diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-05-25 18:07:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-05-25 18:07:25 +0000 |
commit | 4df8ca9df2d960b9a112d60cdfd61d7f10f44cfa (patch) | |
tree | 32ba1d89017a1a144bce6424d38ac1378a0de575 /libavcodec/vp3.c | |
parent | 4fc2c6447ff5432da131082662e0345f8772721c (diff) | |
download | ffmpeg-4df8ca9df2d960b9a112d60cdfd61d7f10f44cfa.tar.gz |
warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
Originally committed as revision 3156 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index e140ae3fdb..5b3f1b9260 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -2056,7 +2056,7 @@ static void render_fragments(Vp3DecodeContext *s, unsigned char *last_plane; unsigned char *golden_plane; int stride; - int motion_x, motion_y; + int motion_x = 0xdeadbeef, motion_y = 0xdeadbeef; int upper_motion_limit, lower_motion_limit; int motion_halfpel_index; uint8_t *motion_source; |