From 8fc9376c590d2998820bb27b4465636a3f3257a8 Mon Sep 17 00:00:00 2001 From: Loren Merritt Date: Thu, 27 Aug 2009 13:41:29 +0000 Subject: indent Originally committed as revision 19727 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vorbis.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'libavcodec/vorbis.c') diff --git a/libavcodec/vorbis.c b/libavcodec/vorbis.c index f89be252c5..a44dca8aaa 100644 --- a/libavcodec/vorbis.c +++ b/libavcodec/vorbis.c @@ -176,20 +176,20 @@ static void render_line(int x0, int y0, int x1, int y1, float * buf) { if(ady*2<=adx) { // optimized common case render_line_unrolled(x0, y0, x1, sy, ady, adx, buf); } else { - int base = dy / adx; - int x = x0; - int y = y0; - int err = -adx; - ady -= FFABS(base) * adx; - while (++x < x1) { - y += base; - err += ady; - if (err >= 0) { - err -= adx; - y += sy; + int base = dy / adx; + int x = x0; + int y = y0; + int err = -adx; + ady -= FFABS(base) * adx; + while (++x < x1) { + y += base; + err += ady; + if (err >= 0) { + err -= adx; + y += sy; + } + buf[x] = ff_vorbis_floor1_inverse_db_table[y]; } - buf[x] = ff_vorbis_floor1_inverse_db_table[y]; - } } } -- cgit v1.2.3