diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-01-29 01:15:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-01-29 01:15:25 +0000 |
commit | 8fd19ab286ea352eff0e2162d0fc5e49fb21110e (patch) | |
tree | 1fb25543328acbe9551c253c878ab3ec999c8999 /libavcodec/dsputil.h | |
parent | 5a60360712c331b329e4f6e122b87bd288b20819 (diff) | |
download | ffmpeg-8fd19ab286ea352eff0e2162d0fc5e49fb21110e.tar.gz |
SSE2 fdct by (Balatoni Denes <pnis at coder dot hu>)
Originally committed as revision 2729 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 9b9a3ca846..fbe2c684e1 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -45,6 +45,7 @@ void j_rev_dct (DCTELEM *data); void ff_fdct_mmx(DCTELEM *block); void ff_fdct_mmx2(DCTELEM *block); +void ff_fdct_sse2(DCTELEM *block); /* encoding scans */ extern const uint8_t ff_alternate_horizontal_scan[64]; |