From a92fd8a06256e71a0be87b03751ec3c2a4a8aa21 Mon Sep 17 00:00:00 2001 From: Mickaël Raulet Date: Mon, 4 Jul 2016 15:37:52 +0200 Subject: hevc: Add DC IDCT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Integrated to Libav by Josh de Kock . Signed-off-by: Alexandra Hájková --- libavcodec/hevcdsp.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libavcodec/hevcdsp.c') diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c index 4bd3d97299..7c191986a0 100644 --- a/libavcodec/hevcdsp.c +++ b/libavcodec/hevcdsp.c @@ -175,6 +175,10 @@ void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth) hevcdsp->idct[2] = FUNC(idct_16x16, depth); \ hevcdsp->idct[3] = FUNC(idct_32x32, depth); \ \ + hevcdsp->idct_dc[0] = FUNC(idct_4x4_dc, depth); \ + hevcdsp->idct_dc[1] = FUNC(idct_8x8_dc, depth); \ + hevcdsp->idct_dc[2] = FUNC(idct_16x16_dc, depth); \ + hevcdsp->idct_dc[3] = FUNC(idct_32x32_dc, depth); \ hevcdsp->sao_band_filter[0] = FUNC(sao_band_filter_0, depth); \ hevcdsp->sao_band_filter[1] = FUNC(sao_band_filter_1, depth); \ hevcdsp->sao_band_filter[2] = FUNC(sao_band_filter_2, depth); \ -- cgit v1.2.3