Searched refs:col_limit (Results 1 – 11 of 11) sorted by relevance
/third_party/ffmpeg/tests/checkasm/ |
D | hevc_idct.c | 48 int col_limit = block_size; in check_idct() local 49 declare_func(void, int16_t *coeffs, int col_limit); in check_idct() 54 call_ref(coeffs0, col_limit); in check_idct() 55 call_new(coeffs1, col_limit); in check_idct() 58 bench_new(coeffs1, col_limit); in check_idct()
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | hevcdsp_init_aarch64.c | 44 void ff_hevc_idct_8x8_8_neon(int16_t *coeffs, int col_limit); 45 void ff_hevc_idct_8x8_10_neon(int16_t *coeffs, int col_limit); 46 void ff_hevc_idct_16x16_8_neon(int16_t *coeffs, int col_limit); 47 void ff_hevc_idct_16x16_10_neon(int16_t *coeffs, int col_limit);
|
/third_party/ffmpeg/libavcodec/arm/ |
D | hevcdsp_init_neon.c | 62 void ff_hevc_idct_4x4_8_neon(int16_t *coeffs, int col_limit); 63 void ff_hevc_idct_8x8_8_neon(int16_t *coeffs, int col_limit); 64 void ff_hevc_idct_16x16_8_neon(int16_t *coeffs, int col_limit); 65 void ff_hevc_idct_32x32_8_neon(int16_t *coeffs, int col_limit); 66 void ff_hevc_idct_4x4_10_neon(int16_t *coeffs, int col_limit); 67 void ff_hevc_idct_8x8_10_neon(int16_t *coeffs, int col_limit); 68 void ff_hevc_idct_16x16_10_neon(int16_t *coeffs, int col_limit); 69 void ff_hevc_idct_32x32_10_neon(int16_t *coeffs, int col_limit);
|
/third_party/ffmpeg/libavcodec/ |
D | hevc_cabac.c | 1520 int col_limit = last_significant_coeff_x + last_significant_coeff_y + 4; in ff_hevc_hls_residual_coding() local 1522 col_limit = FFMIN(4, col_limit); in ff_hevc_hls_residual_coding() 1524 col_limit = FFMIN(8, col_limit); in ff_hevc_hls_residual_coding() 1526 col_limit = FFMIN(24, col_limit); in ff_hevc_hls_residual_coding() 1527 s->hevcdsp.idct[log2_trafo_size - 2](coeffs, col_limit); in ff_hevc_hls_residual_coding()
|
D | hevcdsp.h | 59 void (*idct[4])(int16_t *coeffs, int col_limit);
|
D | hevcdsp_template.c | 233 int limit2 = FFMIN(col_limit + 4, H) 235 int limit = FFMIN(col_limit, H); \ 236 int limit2 = FFMIN(col_limit + 4, H) 242 int col_limit) \
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | hevcdsp_template.c | 21 static void FUNC(ff_hevc_idct_4x4, BIT_DEPTH)(int16_t *coeffs, int col_limit) in FUNC()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | hevcdsp_mips.h | 464 void ff_hevc_idct_4x4_msa(int16_t *coeffs, int col_limit); 465 void ff_hevc_idct_8x8_msa(int16_t *coeffs, int col_limit); 466 void ff_hevc_idct_16x16_msa(int16_t *coeffs, int col_limit); 467 void ff_hevc_idct_32x32_msa(int16_t *coeffs, int col_limit);
|
D | hevc_idct_msa.c | 963 void ff_hevc_idct_4x4_msa(int16_t *coeffs, int col_limit) in ff_hevc_idct_4x4_msa() argument 968 void ff_hevc_idct_8x8_msa(int16_t *coeffs, int col_limit) in ff_hevc_idct_8x8_msa() argument 973 void ff_hevc_idct_16x16_msa(int16_t *coeffs, int col_limit) in ff_hevc_idct_16x16_msa() argument 978 void ff_hevc_idct_32x32_msa(int16_t *coeffs, int col_limit) in ff_hevc_idct_32x32_msa() argument
|
/third_party/ffmpeg/libavcodec/x86/ |
D | hevcdsp_init.c | 76 void ff_hevc_idct_4x4_8_ ## opt(int16_t *coeffs, int col_limit); \ 77 void ff_hevc_idct_4x4_10_ ## opt(int16_t *coeffs, int col_limit); \ 78 void ff_hevc_idct_8x8_8_ ## opt(int16_t *coeffs, int col_limit); \ 79 void ff_hevc_idct_8x8_10_ ## opt(int16_t *coeffs, int col_limit); \ 80 void ff_hevc_idct_16x16_8_ ## opt(int16_t *coeffs, int col_limit); \ 81 void ff_hevc_idct_16x16_10_ ## opt(int16_t *coeffs, int col_limit); \ 82 void ff_hevc_idct_32x32_8_ ## opt(int16_t *coeffs, int col_limit); \ 83 void ff_hevc_idct_32x32_10_ ## opt(int16_t *coeffs, int col_limit);
|
D | hevc_idct.asm | 359 ; void ff_hevc_idct_4x4__{8,10}_<opt>(int16_t *coeffs, int col_limit) 506 ; void ff_hevc_idct_8x8_{8,10}_<opt>(int16_t *coeffs, int col_limit) 628 ; void ff_hevc_idct_16x16_{8,10}_<opt>(int16_t *coeffs, int col_limit) 790 ; void ff_hevc_idct_32x32_{8,10}_<opt>(int16_t *coeffs, int col_limit)
|