From 2ae91c86f3869b656b58ee3ee1f5fd2922d7b659 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 22 Apr 2013 21:37:25 +0200 Subject: [PATCH] avcodec_get_context_defaults3: set codec_id Fixes Ticket1996 Signed-off-by: Michael Niedermayer --- libavcodec/options.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/options.c b/libavcodec/options.c index 1d10128481..e1349dd3a8 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -102,6 +102,9 @@ int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec) s->av_class = &av_codec_context_class; s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN; + if (codec) + s->codec_id = codec->id; + if(s->codec_type == AVMEDIA_TYPE_AUDIO) flags= AV_OPT_FLAG_AUDIO_PARAM; else if(s->codec_type == AVMEDIA_TYPE_VIDEO)