diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-12-07 16:09:33 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-12-07 16:09:33 +0000 |
commit | f1862127f505594894fd120c1eb4e9dd3c096b62 (patch) | |
tree | 8b44b3092d61e91626a3040ef1de0e6ece6ea73b | |
parent | 3edeab82091c7c4dd8223abf9b7f4594040fa524 (diff) | |
download | ffmpeg-f1862127f505594894fd120c1eb4e9dd3c096b62.tar.gz |
Added entry for H.264 DCT to the DSP context.
Originally committed as revision 7247 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 c976c7bc69..c728c1bcab 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -383,6 +383,7 @@ typedef struct DSPContext { void (*h264_idct8_add)(uint8_t *dst, DCTELEM *block, int stride); void (*h264_idct_dc_add)(uint8_t *dst, DCTELEM *block, int stride); void (*h264_idct8_dc_add)(uint8_t *dst, DCTELEM *block, int stride); + void (*h264_dct)(DCTELEM block[4][4]); /* snow wavelet */ void (*vertical_compose97i)(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWTELEM *b3, DWTELEM *b4, DWTELEM *b5, int width); |