summaryrefslogtreecommitdiff
path: root/libavcodec/hevcdsp.h
diff options
context:
space:
mode:
authorMickaël Raulet <mraulet@insa-rennes.fr>2016-07-04 15:37:52 +0200
committerLuca Barbato <lu_zero@gentoo.org>2016-07-18 15:27:13 +0200
commita92fd8a06256e71a0be87b03751ec3c2a4a8aa21 (patch)
tree107afc227b94776a8b834fa21acd169bdf2d6435 /libavcodec/hevcdsp.h
parent4f247de3b797cdc9d243d26534412f81c306e5b5 (diff)
hevc: Add DC IDCT
Integrated to Libav by Josh de Kock <josh@itanimul.li>. Signed-off-by: Alexandra Hájková <alexandra@khirnov.net>
Diffstat (limited to 'libavcodec/hevcdsp.h')
-rw-r--r--libavcodec/hevcdsp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h
index decd1c9376..bbc4cb27ce 100644
--- a/libavcodec/hevcdsp.h
+++ b/libavcodec/hevcdsp.h
@@ -47,6 +47,7 @@ typedef struct HEVCDSPContext {
void (*dequant)(int16_t *coeffs);
void (*transform_4x4_luma)(int16_t *coeffs);
void (*idct[4])(int16_t *coeffs);
+ void (*idct_dc[4])(int16_t *coeffs);
void (*sao_band_filter[4])(uint8_t *dst, uint8_t *src, ptrdiff_t stride,
struct SAOParams *sao, int *borders,