summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-05-07 15:44:42 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-05-07 15:44:42 +0000
commitba4816a0a93111638536408b952c58364012762b (patch)
tree7c6b0c2393b8902775709f7d8ac35acf688af26f
parentc0f716b86f8501539c67711c3efe3dda25e26989 (diff)
cosmetics: fix inconsistent indentation
Originally committed as revision 8929 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/vp3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index a8529fb7ff..efe7017acc 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -2405,10 +2405,10 @@ static int theora_decode_header(AVCodecContext *avctx, GetBitContext *gb)
visible_width = get_bits_long(gb, 24);
visible_height = get_bits_long(gb, 24);
- if (s->theora >= 0x030200) {
- skip_bits(gb, 8); /* offset x */
- skip_bits(gb, 8); /* offset y */
- }
+ if (s->theora >= 0x030200) {
+ skip_bits(gb, 8); /* offset x */
+ skip_bits(gb, 8); /* offset y */
+ }
skip_bits(gb, 32); /* fps numerator */
skip_bits(gb, 32); /* fps denumerator */