Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/mips/
Dvp8dsp_init_mips.c82 dsp->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_mmi; in ff_vp8dsp_init_mips()
164 dsp->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_msa; in ff_vp8dsp_init_mips()
/third_party/ffmpeg/libavcodec/
Dvp8dsp.h38 void (*vp8_luma_dc_wht)(int16_t block[4][4][16], int16_t dc[16]); member
Dvp8dsp.c691 dsp->vp8_luma_dc_wht = vp7_luma_dc_wht_c; in LOOP_FILTERS()
718 dsp->vp8_luma_dc_wht = vp8_luma_dc_wht_c; in LOOP_FILTERS()
Dvp8.c1499 s->vp8dsp.vp8_luma_dc_wht(td->block, td->block_dc); in decode_mb_coeffs()
/third_party/ffmpeg/libavcodec/arm/
Dvp8dsp_init_neon.c100 dsp->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_neon; in ff_vp8dsp_init_neon()
Dvp8dsp_init_armv6.c103 dsp->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_armv6; in ff_vp8dsp_init_armv6()
Dvp8dsp_armv6.S59 @ void vp8_luma_dc_wht(int16_t block[4][4][16], int16_t dc[16])
/third_party/ffmpeg/libavcodec/aarch64/
Dvp8dsp_init_aarch64.c105 dsp->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_neon; in ff_vp8dsp_init_aarch64()
/third_party/ffmpeg/libavcodec/x86/
Dvp8dsp_init.c381 c->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_mmx; in ff_vp8dsp_init_x86()
419 c->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_sse; in ff_vp8dsp_init_x86()
Dvp8dsp.asm1197 cglobal vp8_luma_dc_wht, 2, 3, 0, block, dc1, dc2
/third_party/ffmpeg/tests/checkasm/
Dvp8dsp.c228 …oid (*idct)(int16_t [4][4][16], int16_t [16]) = dc_only ? d.vp8_luma_dc_wht_dc : d.vp8_luma_dc_wht; in check_luma_dc_wht()