diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-08-29 23:55:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-08-29 23:55:32 +0000 |
commit | 28db7fce02f94c83cddc611f8811a6e8afd57050 (patch) | |
tree | 311bd4619432ddab25232c4a07a5639e45d79900 /libavcodec/dsputil.h | |
parent | e647c59840f37b6918f5315cf1f8e5c2ea03ba95 (diff) | |
download | ffmpeg-28db7fce02f94c83cddc611f8811a6e8afd57050.tar.gz |
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
per context DCT selection
Originally committed as revision 878 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 28655f79c3..616acc20ff 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -27,13 +27,12 @@ typedef short DCTELEM; void fdct_ifast (DCTELEM *data); +void ff_jpeg_fdct_islow (DCTELEM *data); void j_rev_dct (DCTELEM *data); void fdct_mmx(DCTELEM *block); -extern void (*av_fdct)(DCTELEM *block); - /* encoding scans */ extern UINT8 ff_alternate_horizontal_scan[64]; extern UINT8 ff_alternate_vertical_scan[64]; |