diff options
author | Ivan Kalvachev <ikalvachev@gmail.com> | 2007-07-11 22:05:43 +0000 |
---|---|---|
committer | Ivan Kalvachev <ikalvachev@gmail.com> | 2007-07-11 22:05:43 +0000 |
commit | ddeaf723c5e97d1ae81a4827b73f99f3bc3d86f3 (patch) | |
tree | 1c6d979feb2a6a02a1f23c11854d8747b1fb2e5a /libavcodec/dsputil.h | |
parent | c3d0c11bfb55668c9dd3938c5a83e22b89a83224 (diff) | |
download | ffmpeg-ddeaf723c5e97d1ae81a4827b73f99f3bc3d86f3.tar.gz |
Integrate reference mpeg IDCT into dsputil.
Originally committed as revision 9603 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 2d312e5196..80bcd62dc9 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -47,6 +47,7 @@ void j_rev_dct (DCTELEM *data); void j_rev_dct4 (DCTELEM *data); void j_rev_dct2 (DCTELEM *data); void j_rev_dct1 (DCTELEM *data); +void ff_mpeg_idct_c(DCTELEM *data); void ff_fdct_mmx(DCTELEM *block); void ff_fdct_mmx2(DCTELEM *block); |