1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-29 22:00:58 +02:00

avcodec/flacdec: also do crc check when er compliant is set

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-10-27 09:28:30 +01:00
parent 346e09638c
commit 3b56f665b1

View File

@ -539,7 +539,7 @@ static int flac_decode_frame(AVCodecContext *avctx, void *data,
}
bytes_read = get_bits_count(&s->gb)/8;
if ((s->avctx->err_recognition & AV_EF_CRCCHECK) &&
if ((s->avctx->err_recognition & (AV_EF_CRCCHECK|AV_EF_COMPLIANT)) &&
av_crc(av_crc_get_table(AV_CRC_16_ANSI),
0, buf, bytes_read)) {
av_log(s->avctx, AV_LOG_ERROR, "CRC error at PTS %"PRId64"\n", avpkt->pts);