diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-01-03 23:05:53 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-01-03 23:05:53 +0000 |
commit | 471db688c692e2a036b5ff708ac04d290b9751aa (patch) | |
tree | 0f6757a38fdf7d3d766be057a4cdb4ddeaf46105 | |
parent | 5706c0becd1025227fef8dbf35c19ecdd434d4aa (diff) | |
download | ffmpeg-471db688c692e2a036b5ff708ac04d290b9751aa.tar.gz |
only check ac3 crc if AVCodecContext.error_resilience > 0
Originally committed as revision 11388 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ac3dec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 1db4a50025..507caa0602 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -1109,10 +1109,12 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size, } /* check for crc mismatch */ + if(avctx->error_resilience > 0) { if(av_crc(av_crc8005, 0, &buf[2], s->frame_size-2)) { av_log(avctx, AV_LOG_ERROR, "frame CRC mismatch\n"); return -1; } + } avctx->sample_rate = s->sample_rate; avctx->bit_rate = s->bit_rate; |