diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-01-08 23:44:48 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-01-08 23:44:48 +0000 |
commit | f34b221bd2bffc18e9d383b3e159a03b411818e9 (patch) | |
tree | 306c20f788c78b8855791ac541695d4ca4beafe7 | |
parent | aa6b38c29d2906a7778f6f7f998cf595602fc5fb (diff) | |
download | ffmpeg-f34b221bd2bffc18e9d383b3e159a03b411818e9.tar.gz |
used defined name for testing error resilience level
Originally committed as revision 11478 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ac3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index a81286c375..fb23725269 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -1133,7 +1133,7 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size, } /* check for crc mismatch */ - if(avctx->error_resilience > 0) { + if(avctx->error_resilience >= FF_ER_CAREFUL) { if(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, &buf[2], s->frame_size-2)) { av_log(avctx, AV_LOG_ERROR, "frame CRC mismatch\n"); return -1; |