diff options
author | Jindřich Makovička <makovick@gmail.com> | 2010-02-27 14:08:06 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-02-27 14:08:06 +0000 |
commit | 8590e6d52987923ad6a16212a9b1765361260e42 (patch) | |
tree | bfc258d5099b9c1daed26f8868accb7ce6004da4 | |
parent | e322aacedd1e91cbd1b1463ae9b4bb59a8316b5c (diff) | |
download | ffmpeg-8590e6d52987923ad6a16212a9b1765361260e42.tar.gz |
Strides in Indeo 5 reconstruction filter should be signed,
this way it works on 64-bit archs too.
Patch by Jindřich Makovička ($lastname without last letter and háček, gmail)
Originally committed as revision 22093 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ivi_dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ivi_dsp.c b/libavcodec/ivi_dsp.c index a58fcc52da..f18f378aef 100644 --- a/libavcodec/ivi_dsp.c +++ b/libavcodec/ivi_dsp.c @@ -38,7 +38,7 @@ void ff_ivi_recompose53(const IVIPlaneDesc *plane, uint8_t *dst, int32_t p0, p1, p2, p3, tmp0, tmp1, tmp2; int32_t b0_1, b0_2, b1_1, b1_2, b1_3, b2_1, b2_2, b2_3, b2_4, b2_5, b2_6; int32_t b3_1, b3_2, b3_3, b3_4, b3_5, b3_6, b3_7, b3_8, b3_9; - uint32_t pitch, back_pitch; + int32_t pitch, back_pitch; const IDWTELEM *b0_ptr, *b1_ptr, *b2_ptr, *b3_ptr; /* all bands should have the same pitch */ |