diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-05-18 22:59:12 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-05-18 22:59:12 +0000 |
commit | 61a4e8ae3b4398adcbf85c68e81a04f31afaec91 (patch) | |
tree | e321daf8e6058da485223640685d4cd7f37a9dd6 | |
parent | f9ed4f8894ee20d82712dc4c5ddf85d99a339051 (diff) | |
download | ffmpeg-61a4e8ae3b4398adcbf85c68e81a04f31afaec91.tar.gz |
removed debug function
Originally committed as revision 519 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 1354e188b6..7e9d84b24f 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -1080,7 +1080,9 @@ static void clear_blocks_mmx(DCTELEM *blocks) ); } +#if 0 static void just_return() { return; } +#endif void dsputil_init_mmx(void) { @@ -1170,7 +1172,7 @@ void dsputil_init_mmx(void) put_pixels_tab[2] = put_pixels_y2_3dnow; put_no_rnd_pixels_tab[1] = put_no_rnd_pixels_x2_3dnow; put_no_rnd_pixels_tab[2] = put_no_rnd_pixels_y2_3dnow; - + avg_pixels_tab[0] = avg_pixels_3dnow; avg_pixels_tab[1] = avg_pixels_x2_3dnow; avg_pixels_tab[2] = avg_pixels_y2_3dnow; |