Browse Source

Warn the user if lowres > max_lowres, set lowres to max_lowres and continue

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Jean First Michael Niedermayer 13 years ago
parent
commit
125ea3ee06
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      libavcodec/utils.c

+ 2
- 3
libavcodec/utils.c View File

@@ -601,10 +601,9 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVD
} }


if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) { if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
av_log(avctx, AV_LOG_ERROR, "The maximum value for lowres supported by the decoder is %d\n",
av_log(avctx, AV_LOG_WARNING, "The maximum value for lowres supported by the decoder is %d\n",
avctx->codec->max_lowres); avctx->codec->max_lowres);
ret = AVERROR(EINVAL);
goto free_and_end;
avctx->lowres = avctx->codec->max_lowres;
} }
if (avctx->codec->encode) { if (avctx->codec->encode) {
int i; int i;


Loading…
Cancel
Save