summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-01-04 00:39:03 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-01-04 00:39:03 +0000
commit7564658bbc6a59173906ed281743225366389f70 (patch)
tree3c8a2a082fb6f6679482016b9dbddcde5dd94076 /libavcodec
parent471db688c692e2a036b5ff708ac04d290b9751aa (diff)
cosmetics: indentation and add a TODO comment
Originally committed as revision 11389 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/ac3dec.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index 507caa0602..ceb04b6300 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -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;