mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-17 12:37:01 +00:00
avcodec/options: Set AVCodecContext->codec upon initialization.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
bccae39072
commit
d1d3904273
@ -95,8 +95,10 @@ int avcodec_get_context_defaults3(AVCodecContext *s, const AVCodec *codec)
|
|||||||
s->av_class = &av_codec_context_class;
|
s->av_class = &av_codec_context_class;
|
||||||
|
|
||||||
s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
|
s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
|
||||||
if (codec)
|
if (codec) {
|
||||||
|
s->codec = codec;
|
||||||
s->codec_id = codec->id;
|
s->codec_id = codec->id;
|
||||||
|
}
|
||||||
|
|
||||||
if(s->codec_type == AVMEDIA_TYPE_AUDIO)
|
if(s->codec_type == AVMEDIA_TYPE_AUDIO)
|
||||||
flags= AV_OPT_FLAG_AUDIO_PARAM;
|
flags= AV_OPT_FLAG_AUDIO_PARAM;
|
||||||
|
Loading…
Reference in New Issue
Block a user