diff options
author | Oskar Arvidsson <oskar@irock.se> | 2011-04-10 22:42:36 +0200 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-10 07:24:17 -0400 |
commit | e39e3abad4ce667f06d41097428695a7aad095fb (patch) | |
tree | fee1f3d4342f18bc992c79fb4b541e08861b632e /libavcodec/h264dsp.h | |
parent | dd561441b1e849df7d8681c6f32af82d4088dafd (diff) | |
download | ffmpeg-e39e3abad4ce667f06d41097428695a7aad095fb.tar.gz |
Choose h264 chroma dc dequant function dynamically.
Needed for high bit depth h264 decoding.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
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 9db4c13784..7eb50be342 100644 --- a/libavcodec/h264dsp.h +++ b/libavcodec/h264dsp.h @@ -72,6 +72,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); |