aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-03-25 23:34:49 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-03-25 23:34:49 +0000
commit984ff38a2bc4357f401c3fa5e5821d4e8cf9bb24 (patch)
tree6294a2ed99a40c7ddc1b03775778aec6b44f566b
parentc33a196716bcc36754b3cc5f4c0d22c27045efd5 (diff)
downloadffmpeg-984ff38a2bc4357f401c3fa5e5821d4e8cf9bb24.tar.gz
cosmetics: indentation after last commit
Originally committed as revision 12594 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/ac3dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index cd648cecbb..b16d0ff757 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -1143,7 +1143,7 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
memcpy(s->input_buffer, buf, FFMIN(buf_size, AC3_MAX_FRAME_SIZE));
init_get_bits(&s->gbc, s->input_buffer, buf_size * 8);
} else {
- init_get_bits(&s->gbc, buf, buf_size * 8);
+ init_get_bits(&s->gbc, buf, buf_size * 8);
}
/* parse the syncinfo */