diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-05-23 15:46:07 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-05-23 15:46:07 +0000 |
commit | 423d391bfeee121410b84618b1c84d23b3156ffa (patch) | |
tree | 813d0bb04a2adfbd9e83b969391a3fd658539936 /tests/dsptest.c | |
parent | 8cd91a44b82316ea221e1161a134e03ca6ae1a08 (diff) | |
download | ffmpeg-423d391bfeee121410b84618b1c84d23b3156ffa.tar.gz |
* minor update
Originally committed as revision 571 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/dsptest.c')
-rw-r--r-- | tests/dsptest.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/dsptest.c b/tests/dsptest.c index ab51027fa6..efb44f20b1 100644 --- a/tests/dsptest.c +++ b/tests/dsptest.c @@ -64,8 +64,9 @@ static const struct pix_func { } pix_func[] = { PIX_FUNC_MMX(put_pixels), - PIX_FUNC_MMX(put_pixels_x2), - PIX_FUNC_MMX(put_pixels_y2), +#if 1 + PIX_FUNC(put_pixels_x2), + PIX_FUNC(put_pixels_y2), PIX_FUNC_MMX(put_pixels_xy2), PIX_FUNC(put_no_rnd_pixels_x2), @@ -76,7 +77,7 @@ static const struct pix_func { PIX_FUNC(avg_pixels_x2), PIX_FUNC(avg_pixels_y2), PIX_FUNC(avg_pixels_xy2), - +#endif { 0, 0 } }; |