diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-08 19:56:10 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-31 17:53:57 +0100 |
commit | d8eda3708023db388d80027a79d5df7ee25a5a3f (patch) | |
tree | f4ac241ded6d7a151fd51757a6cffbcfb542cb31 /libavcodec/dsputil.h | |
parent | 38fdf7258035eb520ca152e9bea6d95cdfaca424 (diff) | |
download | ffmpeg-d8eda3708023db388d80027a79d5df7ee25a5a3f.tar.gz |
x86: mmx2 ---> mmxext in function names
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index e38f7a744c..f48aa96017 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -49,7 +49,7 @@ void ff_j_rev_dct (DCTELEM *data); void ff_wmv2_idct_c(DCTELEM *data); void ff_fdct_mmx(DCTELEM *block); -void ff_fdct_mmx2(DCTELEM *block); +void ff_fdct_mmxext(DCTELEM *block); void ff_fdct_sse2(DCTELEM *block); #define H264_IDCT(depth) \ |