diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-19 03:16:00 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-19 04:07:26 +0100 |
commit | 0af8d20755f051f7cd7f2a9d21241c21c1b96818 (patch) | |
tree | 9a35f6fa85b6d011a16d0f104fd1e9cdbffcf166 /libavcodec/h261dec.c | |
parent | b0ccebe448ecf0351b773ea3c1796866f834dca8 (diff) | |
download | ffmpeg-0af8d20755f051f7cd7f2a9d21241c21c1b96818.tar.gz |
h261dec: correct AV_EF flags.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h261dec.c')
-rw-r--r-- | libavcodec/h261dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c index 17abc64a60..186fe9a651 100644 --- a/libavcodec/h261dec.c +++ b/libavcodec/h261dec.c @@ -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; } |