mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
Make avcodec_open set codec_id and codec_type if they haven't been set.
This fixes the API breakage introduced by the check that avctx codec id and type match the opened codec and should make (almost?) all applications work again. Originally committed as revision 20125 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
43d7c6118d
commit
681c180dc4
@ -480,6 +480,11 @@ int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
|
||||
}
|
||||
|
||||
avctx->codec = codec;
|
||||
if ((avctx->codec_type == CODEC_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
|
||||
avctx->codec_id == CODEC_ID_NONE) {
|
||||
avctx->codec_type = codec->type;
|
||||
avctx->codec_id = codec->id;
|
||||
}
|
||||
if(avctx->codec_id != codec->id || avctx->codec_type != codec->type){
|
||||
av_log(avctx, AV_LOG_ERROR, "codec type or id mismatches\n");
|
||||
goto free_and_end;
|
||||
|
Loading…
Reference in New Issue
Block a user