OSDN Git Service

set codec_type on init
authorAlex Beregszaszi <alex@rtfs.hu>
Tue, 17 Jul 2007 13:35:16 +0000 (13:35 +0000)
committerAlex Beregszaszi <alex@rtfs.hu>
Tue, 17 Jul 2007 13:35:16 +0000 (13:35 +0000)
Originally committed as revision 9721 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/utils.c

index bdc67c1..f5f9f2f 100644 (file)
@@ -759,6 +759,7 @@ void avcodec_get_context_defaults2(AVCodecContext *s, enum CodecType codec_type)
 
     s->av_class= &av_codec_context_class;
 
+    s->codec_type = codec_type;
     if(codec_type == CODEC_TYPE_AUDIO)
         flags= AV_OPT_FLAG_AUDIO_PARAM;
     else if(codec_type == CODEC_TYPE_VIDEO)