|
|
|
@ -50,10 +50,10 @@ void ff_h264_deq_idct_luma_dc_msa(int16_t *dst, int16_t *src, |
|
|
|
|
int32_t de_q_val); |
|
|
|
|
void ff_h264_idct_add16_msa(uint8_t *dst, const int32_t *blk_offset, |
|
|
|
|
int16_t *block, int32_t stride, |
|
|
|
|
const uint8_t nnzc[15 * 8]); |
|
|
|
|
const uint8_t nnzc[5 * 8]); |
|
|
|
|
void ff_h264_idct_add16_intra_msa(uint8_t *dst, const int32_t *blk_offset, |
|
|
|
|
int16_t *block, int32_t dst_stride, |
|
|
|
|
const uint8_t nnzc[15 * 8]); |
|
|
|
|
const uint8_t nnzc[5 * 8]); |
|
|
|
|
void ff_h264_idct_add8_msa(uint8_t **dst, const int32_t *blk_offset, |
|
|
|
|
int16_t *block, int32_t dst_stride, |
|
|
|
|
const uint8_t nnzc[15 * 8]); |
|
|
|
@ -65,7 +65,7 @@ void ff_h264_idct8_dc_addblk_msa(uint8_t *dst, int16_t *src, |
|
|
|
|
int32_t dst_stride); |
|
|
|
|
void ff_h264_idct8_add4_msa(uint8_t *dst, const int *blk_offset, |
|
|
|
|
int16_t *blk, int dst_stride, |
|
|
|
|
const uint8_t nnzc[15 * 8]); |
|
|
|
|
const uint8_t nnzc[5 * 8]); |
|
|
|
|
|
|
|
|
|
void ff_h264_h_lpf_luma_intra_msa(uint8_t *src, ptrdiff_t stride, |
|
|
|
|
int alpha, int beta); |
|
|
|
@ -329,11 +329,11 @@ void ff_h264_idct8_add_8_mmi(uint8_t *dst, int16_t *block, int stride); |
|
|
|
|
void ff_h264_idct_dc_add_8_mmi(uint8_t *dst, int16_t *block, int stride); |
|
|
|
|
void ff_h264_idct8_dc_add_8_mmi(uint8_t *dst, int16_t *block, int stride); |
|
|
|
|
void ff_h264_idct_add16_8_mmi(uint8_t *dst, const int *block_offset, |
|
|
|
|
int16_t *block, int stride, const uint8_t nnzc[15*8]); |
|
|
|
|
int16_t *block, int stride, const uint8_t nnzc[5 * 8]); |
|
|
|
|
void ff_h264_idct_add16intra_8_mmi(uint8_t *dst, const int *block_offset, |
|
|
|
|
int16_t *block, int stride, const uint8_t nnzc[15*8]); |
|
|
|
|
int16_t *block, int stride, const uint8_t nnzc[5 * 8]); |
|
|
|
|
void ff_h264_idct8_add4_8_mmi(uint8_t *dst, const int *block_offset, |
|
|
|
|
int16_t *block, int stride, const uint8_t nnzc[15*8]); |
|
|
|
|
int16_t *block, int stride, const uint8_t nnzc[5 * 8]); |
|
|
|
|
void ff_h264_idct_add8_8_mmi(uint8_t **dest, const int *block_offset, |
|
|
|
|
int16_t *block, int stride, const uint8_t nnzc[15*8]); |
|
|
|
|
void ff_h264_idct_add8_422_8_mmi(uint8_t **dest, const int *block_offset, |
|
|
|
|