diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-10-23 13:22:20 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-23 13:22:20 +0000 |
commit | cf3bf5bbaa049667612a4b992239cc99dc31aee8 (patch) | |
tree | 1803ac6d760cce57fc0858e53b7a022f0e21bea6 /libavcodec/i386/mpegvideo_mmx_template.c | |
parent | 1745173bc56482e449253ef8d1032c6d5d48cab2 (diff) | |
download | ffmpeg-cf3bf5bbaa049667612a4b992239cc99dc31aee8.tar.gz |
minor mmx2 optimization if the dct
Originally committed as revision 2423 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/mpegvideo_mmx_template.c')
-rw-r--r-- | libavcodec/i386/mpegvideo_mmx_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/mpegvideo_mmx_template.c b/libavcodec/i386/mpegvideo_mmx_template.c index 249f32493b..2728a8dd95 100644 --- a/libavcodec/i386/mpegvideo_mmx_template.c +++ b/libavcodec/i386/mpegvideo_mmx_template.c @@ -43,7 +43,7 @@ static int RENAME(dct_quantize)(MpegEncContext *s, assert((7&(int)(&temp_block[0])) == 0); //did gcc align it correctly? //s->fdct (block); - ff_fdct_mmx (block); //cant be anything else ... + RENAMEl(ff_fdct) (block); //cant be anything else ... if (s->mb_intra) { int dummy; |