mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Test lowres before codec init.
Originally committed as revision 25114 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
40b433b62b
commit
527c91e34a
@ -504,13 +504,13 @@ int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec)
|
|||||||
goto free_and_end;
|
goto free_and_end;
|
||||||
}
|
}
|
||||||
avctx->frame_number = 0;
|
avctx->frame_number = 0;
|
||||||
if(avctx->codec->init){
|
if (avctx->codec->max_lowres < avctx->lowres) {
|
||||||
if (avctx->codec->max_lowres < avctx->lowres) {
|
av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
|
||||||
av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
|
avctx->codec->max_lowres);
|
||||||
avctx->codec->max_lowres);
|
goto free_and_end;
|
||||||
goto free_and_end;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
if(avctx->codec->init){
|
||||||
ret = avctx->codec->init(avctx);
|
ret = avctx->codec->init(avctx);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
goto free_and_end;
|
goto free_and_end;
|
||||||
|
Loading…
Reference in New Issue
Block a user