diff options
author | Oskar Arvidsson <oskar@irock.se> | 2011-03-29 17:48:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-04-10 22:33:41 +0200 |
commit | af0b2d6736a99203fed3014a3e83f8226dade2af (patch) | |
tree | 7a4a3f6aa77129b3497672f87831be72a6256007 /libavcodec/h264dsp.h | |
parent | 488efb33a71683a965c99ddd62ee6c32727ecee9 (diff) | |
download | ffmpeg-af0b2d6736a99203fed3014a3e83f8226dade2af.tar.gz |
Choose h264 chroma dc dequant function dynamically.
Needed for high bit depth h264 decoding.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264dsp.h')
-rw-r--r-- | libavcodec/h264dsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264dsp.h b/libavcodec/h264dsp.h index 2491c90bbb..bdbb4a37f1 100644 --- a/libavcodec/h264dsp.h +++ b/libavcodec/h264dsp.h @@ -68,6 +68,7 @@ typedef struct H264DSPContext{ void (*h264_idct_add8)(uint8_t **dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]); void (*h264_idct_add16intra)(uint8_t *dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]); void (*h264_luma_dc_dequant_idct)(DCTELEM *output, DCTELEM *input/*align 16*/, int qmul); + void (*h264_chroma_dc_dequant_idct)(DCTELEM *block, int qmul); }H264DSPContext; void ff_h264dsp_init(H264DSPContext *c); |