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 /libavformat/oggparsetheora.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 'libavformat/oggparsetheora.c')
-rw-r--r-- | libavformat/oggparsetheora.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/oggparsetheora.c b/libavformat/oggparsetheora.c index c5fac1db0c..851f0e3909 100644 --- a/libavformat/oggparsetheora.c +++ b/libavformat/oggparsetheora.c @@ -76,11 +76,11 @@ theora_header (AVFormatContext * s, int idx) skip_bits(&gb, 100); if (version >= 0x030200) { - width = get_bits_long(&gb, 24); - height = get_bits_long(&gb, 24); - if ( width <= st->codec->width && width > st->codec->width-16 - && height <= st->codec->height && height > st->codec->height-16) - avcodec_set_dimensions(st->codec, width, height); + width = get_bits_long(&gb, 24); + height = get_bits_long(&gb, 24); + if ( width <= st->codec->width && width > st->codec->width-16 + && height <= st->codec->height && height > st->codec->height-16) + avcodec_set_dimensions(st->codec, width, height); skip_bits(&gb, 16); } |