Home
last modified time | relevance | path

Searched refs:vp8_idct_dc_add4uv (Results 1 – 11 of 11) sorted by relevance

/third_party/ffmpeg/libavcodec/mips/
Dvp8dsp_init_mips.c87 dsp->vp8_idct_dc_add4uv = ff_vp8_idct_dc_add4uv_mmi; in ff_vp8dsp_init_mips()
168 dsp->vp8_idct_dc_add4uv = ff_vp8_idct_dc_add4uv_msa; in ff_vp8dsp_init_mips()
/third_party/ffmpeg/libavcodec/
Dvp8dsp.h44 void (*vp8_idct_dc_add4uv)(uint8_t *dst, int16_t block[4][16], member
Dvp8dsp.c699 dsp->vp8_idct_dc_add4uv = vp7_idct_dc_add4uv_c; in LOOP_FILTERS()
726 dsp->vp8_idct_dc_add4uv = vp8_idct_dc_add4uv_c; in LOOP_FILTERS()
Dvp8.c2119 s->vp8dsp.vp8_idct_dc_add4uv(ch_dst, td->block[4 + ch], s->uvlinesize); in idct_mb()
/third_party/ffmpeg/libavcodec/arm/
Dvp8dsp_init_neon.c105 dsp->vp8_idct_dc_add4uv = ff_vp8_idct_dc_add4uv_neon; in ff_vp8dsp_init_neon()
Dvp8dsp_init_armv6.c109 dsp->vp8_idct_dc_add4uv = ff_vp8_idct_dc_add4uv_armv6; in ff_vp8dsp_init_armv6()
Dvp8dsp_armv6.S358 @ void vp8_idct_dc_add4uv(uint8_t *dst, int16_t block[4][16], ptrdiff_t stride)
/third_party/ffmpeg/libavcodec/aarch64/
Dvp8dsp_init_aarch64.c110 dsp->vp8_idct_dc_add4uv = ff_vp8_idct_dc_add4uv_neon; in ff_vp8dsp_init_aarch64()
/third_party/ffmpeg/libavcodec/x86/
Dvp8dsp_init.c329 c->vp8_idct_dc_add4uv = ff_vp8_idct_dc_add4uv_mmx; in ff_vp8dsp_init_x86()
Dvp8dsp.asm965 cglobal vp8_idct_dc_add4uv, 3, 3, 0, dst, block, stride
/third_party/ffmpeg/tests/checkasm/
Dvp8dsp.c173 …void (*idct4dc)(uint8_t *, int16_t[4][16], ptrdiff_t) = chroma ? d.vp8_idct_dc_add4uv : d.vp8_idct… in check_idct_dc4()