Add frame_size as a codec parameter requirement for Speex in
authorJustin Ruggles <justin.ruggles@gmail.com>
Fri, 4 Sep 2009 21:38:45 +0000 (21:38 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Fri, 4 Sep 2009 21:38:45 +0000 (21:38 +0000)
av_find_stream_info().  It forces decoding of a packet when there is no
Speex header in order to determine the correct frame size.

Originally committed as revision 19760 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/utils.c

index 4cec286..59fefd2 100644 (file)
@@ -1862,7 +1862,8 @@ static int has_codec_parameters(AVCodecContext *enc)
         val = enc->sample_rate && enc->channels && enc->sample_fmt != SAMPLE_FMT_NONE;
         if(!enc->frame_size &&
            (enc->codec_id == CODEC_ID_VORBIS ||
-            enc->codec_id == CODEC_ID_AAC))
+            enc->codec_id == CODEC_ID_AAC ||
+            enc->codec_id == CODEC_ID_SPEEX))
             return 0;
         break;
     case CODEC_TYPE_VIDEO: