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

bcoudurier subversion
Wed Feb 13 14:11:10 CET 2008


Author: bcoudurier
Date: Wed Feb 13 14:11:10 2008
New Revision: 11925

Log:
10l, forgot alaw/mulaw mono, use bits_per_sample in fact,
it should correctly set by av_get_bits_per_sample if recognized


Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Wed Feb 13 14:11:10 2008
@@ -1387,8 +1387,7 @@ static void mov_build_index(MOVContext *
                 stsc_index++;
             chunk_samples = sc->sample_to_chunk[stsc_index].count;
             /* get chunk size */
-            if (sc->sample_size > 1 ||
-                st->codec->codec_id == CODEC_ID_PCM_U8 || st->codec->codec_id == CODEC_ID_PCM_S8)
+            if (sc->sample_size > 1 || st->codec->bits_per_sample == 8)
                 chunk_size = chunk_samples * sc->sample_size;
             else if (sc->samples_per_frame > 0 &&
                      (chunk_samples * sc->bytes_per_frame % sc->samples_per_frame == 0)) {




More information about the ffmpeg-cvslog mailing list