mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
used defined name for testing error resilience level
Originally committed as revision 11478 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
aa6b38c29d
commit
f34b221bd2
@ -1133,7 +1133,7 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* check for crc mismatch */
|
/* 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)) {
|
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");
|
av_log(avctx, AV_LOG_ERROR, "frame CRC mismatch\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user