mirror of https://git.ffmpeg.org/ffmpeg.git
h261dec: correct AV_EF flags.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b0ccebe448
commit
0af8d20755
|
@ -136,7 +136,7 @@ static int h261_decode_gob_header(H261Context *h){
|
|||
|
||||
if(s->qscale==0) {
|
||||
av_log(s->avctx, AV_LOG_ERROR, "qscale has forbidden 0 value\n");
|
||||
if (s->avctx->err_recognition & AV_EF_BITSTREAM)
|
||||
if (s->avctx->err_recognition & (AV_EF_BITSTREAM | AV_EF_COMPLIANT))
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue