From fd33ded2356c0954ef3882ffa459c5608f4c09a0 Mon Sep 17 00:00:00 2001 From: conrad Date: Wed, 1 Oct 2008 14:44:30 +0000 Subject: [PATCH] Cosmetics: indentation git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15501 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/vp3.c | 4 ++-- libavformat/oggparsetheora.c | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index e01ceed23..625d832b2 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 */ diff --git a/libavformat/oggparsetheora.c b/libavformat/oggparsetheora.c index c5fac1db0..851f0e390 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); } -- 2.39.2