summaryrefslogtreecommitdiff
path: root/libavcodec/hevcdsp.h
diff options
context:
space:
mode:
authorMickaël Raulet <mraulet@insa-rennes.fr>2016-07-05 18:52:38 +0200
committerLuca Barbato <lu_zero@gentoo.org>2016-07-18 15:27:13 +0200
commitcc16da75c2f99d92f7a6461100f041352deb6d88 (patch)
tree9070fd589edb428c50dc51467d2609e06b2b48c0 /libavcodec/hevcdsp.h
parenta92fd8a06256e71a0be87b03751ec3c2a4a8aa21 (diff)
hevc: Add coefficient limiting to speed up 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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h
index bbc4cb27ce..199e5a9064 100644
--- a/libavcodec/hevcdsp.h
+++ b/libavcodec/hevcdsp.h
@@ -46,7 +46,7 @@ typedef struct HEVCDSPContext {
void (*dequant)(int16_t *coeffs);
void (*transform_4x4_luma)(int16_t *coeffs);
- void (*idct[4])(int16_t *coeffs);
+ void (*idct[4])(int16_t *coeffs, int col_limit);
void (*idct_dc[4])(int16_t *coeffs);
void (*sao_band_filter[4])(uint8_t *dst, uint8_t *src, ptrdiff_t stride,