Mercurial > libavcodec.hg
diff vp3.c @ 2031:4225c131a2eb libavcodec
warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
| author | michael |
|---|---|
| date | Tue, 25 May 2004 18:07:25 +0000 |
| parents | 141a9539e270 |
| children | 380c40efd6bb |
line wrap: on
line diff
--- a/vp3.c Sun May 23 01:10:15 2004 +0000 +++ b/vp3.c Tue May 25 18:07:25 2004 +0000 @@ -2056,7 +2056,7 @@ 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;
