[FFmpeg-cvslog] r14919 - trunk/libavformat/mov.c

bcoudurier subversion
Sat Aug 23 17:25:38 CEST 2008


Author: bcoudurier
Date: Sat Aug 23 17:25:38 2008
New Revision: 14919

Log:
enable fl32/64 le/be in mov with stsd audio v2

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Sat Aug 23 17:25:38 2008
@@ -680,10 +680,10 @@ static int mov_get_lpcm_codec_id(int bps
     if (flags & 1) { // floating point
         if (flags & 2) { // big endian
             if      (bps == 32) return CODEC_ID_PCM_F32BE;
-          //else if (bps == 64) return CODEC_ID_PCM_F64BE;
+            else if (bps == 64) return CODEC_ID_PCM_F64BE;
         } else {
-          //if      (bps == 32) return CODEC_ID_PCM_F32LE;
-          //else if (bps == 64) return CODEC_ID_PCM_F64LE;
+            if      (bps == 32) return CODEC_ID_PCM_F32LE;
+            else if (bps == 64) return CODEC_ID_PCM_F64LE;
         }
     } else {
         if (flags & 2) {




More information about the ffmpeg-cvslog mailing list