Mercurial > libavcodec.hg
diff dsputil.h @ 625:bb6a69f9d409 libavcodec
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
| author | michaelni |
|---|---|
| date | Thu, 29 Aug 2002 23:55:32 +0000 |
| parents | 92e99e506920 |
| children | 23a093d6e450 |
line wrap: on
line diff
--- a/dsputil.h Wed Aug 28 21:47:28 2002 +0000 +++ b/dsputil.h Thu Aug 29 23:55:32 2002 +0000 @@ -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];
