# HG changeset patch # User jbr # Date 1199407143 0 # Node ID 4d746aada17b6c0c1ca772d5fb414608d2579612 # Parent 896e1cd9a7fe981a82eb9d4b4e65b176a70096ef cosmetics: indentation and add a TODO comment diff -r 896e1cd9a7fe -r 4d746aada17b ac3dec.c --- a/ac3dec.c Thu Jan 03 23:05:53 2008 +0000 +++ b/ac3dec.c Fri Jan 04 00:39:03 2008 +0000 @@ -1110,10 +1110,11 @@ /* 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;