diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-10-06 08:03:38 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-10-11 07:50:48 -0700 |
commit | 92fb52d9060a146f31da6f07ea9ce7867294e153 (patch) | |
tree | d3467aa987fd7dbb8c32041611805532bca73ce1 /libavcodec/dsputil.h | |
parent | 8babfc033ecb6332155c1f8879e54dee41d16952 (diff) | |
download | ffmpeg-92fb52d9060a146f31da6f07ea9ce7867294e153.tar.gz |
prores: extract idct into its own dspcontext and merge with put_pixels.
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 73830f8190..bef2cdd4e8 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -202,6 +202,8 @@ typedef struct ScanTable{ } ScanTable; void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable); +void ff_init_scantable_permutation(uint8_t *idct_permutation, + int idct_permutation_type); #define EMULATED_EDGE(depth) \ void ff_emulated_edge_mc_ ## depth (uint8_t *buf, const uint8_t *src, int linesize,\ |