diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2003-10-24 20:09:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-24 20:09:30 +0000 |
commit | 1b245cc21c99d009df73fc9bbb1263a05c159558 (patch) | |
tree | c92aef9ba339f3905fa8ce30afa6e75390409bd1 /libavcodec/i386/motion_est_mmx.c | |
parent | 07bd15c3e9eb5e98e2ad46461c40ae1e67c6bb2e (diff) | |
download | ffmpeg-1b245cc21c99d009df73fc9bbb1263a05c159558.tar.gz |
Fixes GCC 3.3.2 warnings patch by (Panagiotis Issaris <takis at lumumba dot luc dot ac dot be>)
Originally committed as revision 2427 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/motion_est_mmx.c')
-rw-r--r-- | libavcodec/i386/motion_est_mmx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/i386/motion_est_mmx.c b/libavcodec/i386/motion_est_mmx.c index 9e88ce2ce1..d71453a4bd 100644 --- a/libavcodec/i386/motion_est_mmx.c +++ b/libavcodec/i386/motion_est_mmx.c @@ -21,9 +21,9 @@ #include "../dsputil.h" static const __attribute__ ((aligned(8))) uint64_t round_tab[3]={ -0x0000000000000000, -0x0001000100010001, -0x0002000200020002, +0x0000000000000000ULL, +0x0001000100010001ULL, +0x0002000200020002ULL, }; static __attribute__ ((aligned(8), unused)) uint64_t bone= 0x0101010101010101LL; |