|
|
|
@ -79,19 +79,19 @@ void ff_h264_h_loop_filter_luma_mbaff_intra_msa(uint8_t *src, int stride, |
|
|
|
|
int alpha, int beta); |
|
|
|
|
|
|
|
|
|
void ff_biweight_h264_pixels16_8_msa(uint8_t *dst, uint8_t *src, |
|
|
|
|
int stride, int height, int log2_denom, |
|
|
|
|
ptrdiff_t stride, int height, int log2_denom, |
|
|
|
|
int weightd, int weights, int offset); |
|
|
|
|
void ff_biweight_h264_pixels8_8_msa(uint8_t *dst, uint8_t *src, |
|
|
|
|
int stride, int height, int log2_denom, |
|
|
|
|
ptrdiff_t stride, int height, int log2_denom, |
|
|
|
|
int weightd, int weights, int offset); |
|
|
|
|
void ff_biweight_h264_pixels4_8_msa(uint8_t *dst, uint8_t *src, |
|
|
|
|
int stride, int height, int log2_denom, |
|
|
|
|
ptrdiff_t stride, int height, int log2_denom, |
|
|
|
|
int weightd, int weights, int offset); |
|
|
|
|
void ff_weight_h264_pixels16_8_msa(uint8_t *src, int stride, int height, |
|
|
|
|
void ff_weight_h264_pixels16_8_msa(uint8_t *src, ptrdiff_t stride, int height, |
|
|
|
|
int log2_denom, int weight, int offset); |
|
|
|
|
void ff_weight_h264_pixels8_8_msa(uint8_t *src, int stride, int height, |
|
|
|
|
void ff_weight_h264_pixels8_8_msa(uint8_t *src, ptrdiff_t stride, int height, |
|
|
|
|
int log2_denom, int weight, int offset); |
|
|
|
|
void ff_weight_h264_pixels4_8_msa(uint8_t *src, int stride, int height, |
|
|
|
|
void ff_weight_h264_pixels4_8_msa(uint8_t *src, ptrdiff_t stride, int height, |
|
|
|
|
int log2_denom, int weight, int offset); |
|
|
|
|
|
|
|
|
|
void ff_put_h264_qpel16_mc00_msa(uint8_t *dst, const uint8_t *src, |
|
|
|
@ -339,23 +339,23 @@ void ff_h264_luma_dc_dequant_idct_8_mmi(int16_t *output, int16_t *input, |
|
|
|
|
void ff_h264_chroma_dc_dequant_idct_8_mmi(int16_t *block, int qmul); |
|
|
|
|
void ff_h264_chroma422_dc_dequant_idct_8_mmi(int16_t *block, int qmul); |
|
|
|
|
|
|
|
|
|
void ff_h264_weight_pixels16_8_mmi(uint8_t *block, int stride, int height, |
|
|
|
|
void ff_h264_weight_pixels16_8_mmi(uint8_t *block, ptrdiff_t stride, int height, |
|
|
|
|
int log2_denom, int weight, int offset); |
|
|
|
|
void ff_h264_biweight_pixels16_8_mmi(uint8_t *dst, uint8_t *src, |
|
|
|
|
int stride, int height, int log2_denom, int weightd, int weights, |
|
|
|
|
ptrdiff_t stride, int height, int log2_denom, int weightd, int weights, |
|
|
|
|
int offset); |
|
|
|
|
void ff_h264_weight_pixels8_8_mmi(uint8_t *block, int stride, int height, |
|
|
|
|
void ff_h264_weight_pixels8_8_mmi(uint8_t *block, ptrdiff_t stride, int height, |
|
|
|
|
int log2_denom, int weight, int offset); |
|
|
|
|
void ff_h264_biweight_pixels8_8_mmi(uint8_t *dst, uint8_t *src, |
|
|
|
|
int stride, int height, int log2_denom, int weightd, int weights, |
|
|
|
|
ptrdiff_t stride, int height, int log2_denom, int weightd, int weights, |
|
|
|
|
int offset); |
|
|
|
|
void ff_h264_weight_pixels4_8_mmi(uint8_t *block, int stride, int height, |
|
|
|
|
void ff_h264_weight_pixels4_8_mmi(uint8_t *block, ptrdiff_t stride, int height, |
|
|
|
|
int log2_denom, int weight, int offset); |
|
|
|
|
void ff_h264_biweight_pixels4_8_mmi(uint8_t *dst, uint8_t *src, |
|
|
|
|
int stride, int height, int log2_denom, int weightd, int weights, |
|
|
|
|
ptrdiff_t stride, int height, int log2_denom, int weightd, int weights, |
|
|
|
|
int offset); |
|
|
|
|
|
|
|
|
|
void ff_deblock_v_chroma_8_mmi(uint8_t *pix, int stride, int alpha, int beta, |
|
|
|
|
void ff_deblock_v_chroma_8_mmi(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, |
|
|
|
|
int8_t *tc0); |
|
|
|
|
void ff_deblock_v_chroma_intra_8_mmi(uint8_t *pix, int stride, int alpha, |
|
|
|
|
int beta); |
|
|
|
|