| D | hevcdsp.c | 129 #define FUNC(a, depth) a ## _ ## depth in ff_hevc_dsp_init() argument 132 #define PEL_FUNC(dst1, idx1, idx2, a, depth) \ in ff_hevc_dsp_init() argument 135 hevcdsp->dst1[i][idx1][idx2] = a ## _ ## depth; \ in ff_hevc_dsp_init() 139 #define EPEL_FUNCS(depth) \ in ff_hevc_dsp_init() argument 140 PEL_FUNC(put_hevc_epel, 0, 0, put_hevc_pel_pixels, depth); \ in ff_hevc_dsp_init() 141 PEL_FUNC(put_hevc_epel, 0, 1, put_hevc_epel_h, depth); \ in ff_hevc_dsp_init() 142 PEL_FUNC(put_hevc_epel, 1, 0, put_hevc_epel_v, depth); \ in ff_hevc_dsp_init() 143 PEL_FUNC(put_hevc_epel, 1, 1, put_hevc_epel_hv, depth) in ff_hevc_dsp_init() 146 #define EPEL_UNI_FUNCS(depth) \ in ff_hevc_dsp_init() argument 147 PEL_FUNC(put_hevc_epel_uni, 0, 0, put_hevc_pel_uni_pixels, depth); \ in ff_hevc_dsp_init() [all …]
|