Searched refs:buf_pitch (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/mips/ |
D | hevc_idct_msa.c | 428 static void hevc_idct_8x32_column_msa(int16_t *coeffs, uint8_t buf_pitch, in hevc_idct_8x32_column_msa() argument 436 int16_t *src0 = (coeffs + buf_pitch); in hevc_idct_8x32_column_msa() 437 int16_t *src1 = (coeffs + 2 * buf_pitch); in hevc_idct_8x32_column_msa() 438 int16_t *src2 = (coeffs + 4 * buf_pitch); in hevc_idct_8x32_column_msa() 453 LD_SH4(src2, 8 * buf_pitch, in0, in1, in2, in3); in hevc_idct_8x32_column_msa() 457 LD_SH2(src3, 16 * buf_pitch, in4, in6); in hevc_idct_8x32_column_msa() 458 LD_SH2((src3 + 8 * buf_pitch), 16 * buf_pitch, in5, in7); in hevc_idct_8x32_column_msa() 514 LD_SH8(src1, 4 * buf_pitch, in0, in1, in2, in3, in4, in5, in6, in7); in hevc_idct_8x32_column_msa() 544 LD_SH8(src0, 2 * buf_pitch, in0, in1, in2, in3, in4, in5, in6, in7); in hevc_idct_8x32_column_msa() 545 src0 += 16 * buf_pitch; in hevc_idct_8x32_column_msa() [all …]
|
/third_party/ffmpeg/libavcodec/loongarch/ |
D | hevc_idct_lsx.c | 525 static void hevc_idct_8x32_column_lsx(int16_t *coeffs, int32_t buf_pitch, in hevc_idct_8x32_column_lsx() argument 529 int32_t buf_pitch_2 = buf_pitch << 1; in hevc_idct_8x32_column_lsx() 530 int32_t buf_pitch_4 = buf_pitch << 2; in hevc_idct_8x32_column_lsx() 531 int32_t buf_pitch_8 = buf_pitch << 3; in hevc_idct_8x32_column_lsx() 532 int32_t buf_pitch_16 = buf_pitch << 4; in hevc_idct_8x32_column_lsx() 538 int16_t *src0 = (coeffs + buf_pitch); in hevc_idct_8x32_column_lsx() 687 src0 += 16 * buf_pitch; in hevc_idct_8x32_column_lsx() 749 __lsx_vst(in0, (coeffs + i * buf_pitch), 0); in hevc_idct_8x32_column_lsx() 755 __lsx_vst(in0, (coeffs + (31 - i) * buf_pitch), 0); in hevc_idct_8x32_column_lsx() 818 int32_t buf_pitch; in ff_hevc_idct_32x32_lsx() local [all …]
|