Index: source/patched-ffmpeg/libavcodec/vorbis.c |
=================================================================== |
--- source/patched-ffmpeg/libavcodec/vorbis.c (revision 106517) |
+++ source/patched-ffmpeg/libavcodec/vorbis.c (working copy) |
@@ -150,7 +150,7 @@ |
} |
} |
-static inline void render_line_unrolled(intptr_t x, intptr_t y, int x1, |
+static inline void render_line_unrolled(intptr_t x, unsigned char y, int x1, |
intptr_t sy, int ady, int adx, |
float *buf) |
{ |
@@ -185,7 +185,7 @@ |
} else { |
int base = dy / adx; |
int x = x0; |
- int y = y0; |
+ unsigned char y = y0; |
int err = -adx; |
ady -= FFABS(base) * adx; |
while (++x < x1) { |