• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:hevcdsp

25 #include "hevcdsp.h"
126 void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth)
135 hevcdsp->dst1[i][idx1][idx2] = a ## _ ## depth; \
197 hevcdsp->put_pcm = FUNC(put_pcm, depth); \
198 hevcdsp->transform_add[0] = FUNC(transform_add4x4, depth); \
199 hevcdsp->transform_add[1] = FUNC(transform_add8x8, depth); \
200 hevcdsp->transform_add[2] = FUNC(transform_add16x16, depth); \
201 hevcdsp->transform_add[3] = FUNC(transform_add32x32, depth); \
202 hevcdsp->transform_skip = FUNC(transform_skip, depth); \
203 hevcdsp->transform_rdpcm = FUNC(transform_rdpcm, depth); \
204 hevcdsp->idct_4x4_luma = FUNC(transform_4x4_luma, depth); \
205 hevcdsp->idct[0] = FUNC(idct_4x4, depth); \
206 hevcdsp->idct[1] = FUNC(idct_8x8, depth); \
207 hevcdsp->idct[2] = FUNC(idct_16x16, depth); \
208 hevcdsp->idct[3] = FUNC(idct_32x32, depth); \
210 hevcdsp->idct_dc[0] = FUNC(idct_4x4_dc, depth); \
211 hevcdsp->idct_dc[1] = FUNC(idct_8x8_dc, depth); \
212 hevcdsp->idct_dc[2] = FUNC(idct_16x16_dc, depth); \
213 hevcdsp->idct_dc[3] = FUNC(idct_32x32_dc, depth); \
215 hevcdsp->sao_band_filter = FUNC(sao_band_filter_0, depth); \
216 hevcdsp->sao_edge_filter[0] = FUNC(sao_edge_filter_0, depth); \
217 hevcdsp->sao_edge_filter[1] = FUNC(sao_edge_filter_1, depth); \
226 hevcdsp->hevc_h_loop_filter_luma = FUNC(hevc_h_loop_filter_luma, depth); \
227 hevcdsp->hevc_v_loop_filter_luma = FUNC(hevc_v_loop_filter_luma, depth); \
228 hevcdsp->hevc_h_loop_filter_chroma = FUNC(hevc_h_loop_filter_chroma, depth); \
229 hevcdsp->hevc_v_loop_filter_chroma = FUNC(hevc_v_loop_filter_chroma, depth); \
230 hevcdsp->hevc_h_loop_filter_luma_c = FUNC(hevc_h_loop_filter_luma, depth); \
231 hevcdsp->hevc_v_loop_filter_luma_c = FUNC(hevc_v_loop_filter_luma, depth); \
232 hevcdsp->hevc_h_loop_filter_chroma_c = FUNC(hevc_h_loop_filter_chroma, depth); \
233 hevcdsp->hevc_v_loop_filter_chroma_c = FUNC(hevc_v_loop_filter_chroma, depth)
250 if (ARCH_X86) ff_hevcdsp_init_x86(hevcdsp, bit_depth);