diff options
author | David Conrad <lessen42@gmail.com> | 2008-10-01 14:44:30 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2008-10-01 14:44:30 +0000 |
commit | a0ce2d1bbc37168c42ae0673c5975ac7b03f4d75 (patch) | |
tree | da7c68059f6f208a51ea95abb547278f82ab93f9 /libavcodec/vp3.c | |
parent | 277e3e534be2b9390cd6f4beec89595513ec7d47 (diff) | |
download | ffmpeg-a0ce2d1bbc37168c42ae0673c5975ac7b03f4d75.tar.gz |
Cosmetics: indentation
Originally committed as revision 15501 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index e01ceed237..625d832b27 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -2097,8 +2097,8 @@ static int theora_decode_header(AVCodecContext *avctx, GetBitContext *gb) } if (s->theora >= 0x030200) { - visible_width = get_bits_long(gb, 24); - visible_height = get_bits_long(gb, 24); + visible_width = get_bits_long(gb, 24); + visible_height = get_bits_long(gb, 24); skip_bits(gb, 8); /* offset x */ skip_bits(gb, 8); /* offset y */ |