mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
cosmetics: indentation and add a TODO comment
Originally committed as revision 11389 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
471db688c6
commit
7564658bbc
@ -1110,10 +1110,11 @@ 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;
|
||||
}
|
||||
if(av_crc(av_crc8005, 0, &buf[2], s->frame_size-2)) {
|
||||
av_log(avctx, AV_LOG_ERROR, "frame CRC mismatch\n");
|
||||
return -1;
|
||||
}
|
||||
/* TODO: error concealment */
|
||||
}
|
||||
|
||||
avctx->sample_rate = s->sample_rate;
|
||||
|
Loading…
Reference in New Issue
Block a user