comparison vorbis.c @ 10119:8078ecd2fe4c libavcodec

Remove unused variable.
author reimar
date Sun, 30 Aug 2009 08:29:11 +0000
parents 2066cbe806ef
children d157ccc267e7
comparison
equal deleted inserted replaced
10118:4dafbd9c8918 10119:8078ecd2fe4c
146 } 146 }
147 } 147 }
148 148
149 static inline void render_line_unrolled(intptr_t x, intptr_t y, int x1, intptr_t sy, int ady, int adx, float * buf) { 149 static inline void render_line_unrolled(intptr_t x, intptr_t y, int x1, intptr_t sy, int ady, int adx, float * buf) {
150 int err = -adx; 150 int err = -adx;
151 int tmp;
152 x -= x1-1; 151 x -= x1-1;
153 buf += x1-1; 152 buf += x1-1;
154 while (++x < 0) { 153 while (++x < 0) {
155 err += ady; 154 err += ady;
156 if (err >= 0) { 155 if (err >= 0) {