Commit fc4695e4 authored by jbr's avatar jbr

only check ac3 crc if AVCodecContext.error_resilience > 0

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11388 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent af4f6a40
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment