diff options
author | 周晓勇 <zhouxiaoyong@loongson.cn> | 2015-08-04 20:05:17 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-05 22:52:52 +0200 |
commit | 71575d98f5af1ec3e6db07192226246986f5b54a (patch) | |
tree | efccd25354d4ff5de3ebec332e5a99d279d6845f /libavcodec/mips/h264pred_mips.h | |
parent | 31852540d4fba0c4e8a16d0b3ddff08fc98e48fd (diff) | |
download | ffmpeg-71575d98f5af1ec3e6db07192226246986f5b54a.tar.gz |
avcodec: loongson optimized h264pred with mmi v2
Signed-off-by: ZhouXiaoyong <zhouxiaoyong@loongson.cn>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/mips/h264pred_mips.h')
-rw-r--r-- | libavcodec/mips/h264pred_mips.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/mips/h264pred_mips.h b/libavcodec/mips/h264pred_mips.h index 16bf6fc03a..d7d12c5a20 100644 --- a/libavcodec/mips/h264pred_mips.h +++ b/libavcodec/mips/h264pred_mips.h @@ -21,11 +21,8 @@ #ifndef H264_PRED_MIPS_H #define H264_PRED_MIPS_H -#include "libavutil/attributes.h" -#include "libavutil/avassert.h" -#include "libavcodec/avcodec.h" +#include "constants.h" #include "libavcodec/h264pred.h" -#include "libavcodec/bit_depth_template.c" void ff_pred16x16_vertical_8_mmi(uint8_t *src, ptrdiff_t stride); void ff_pred16x16_horizontal_8_mmi(uint8_t *src, ptrdiff_t stride); @@ -34,8 +31,6 @@ void ff_pred8x8l_top_dc_8_mmi(uint8_t *src, int has_topleft, int has_topright, ptrdiff_t stride); void ff_pred8x8l_dc_8_mmi(uint8_t *src, int has_topleft, int has_topright, ptrdiff_t stride); -void ff_pred8x8l_horizontal_8_mmi(uint8_t *src, int has_topleft, - int has_topright, ptrdiff_t stride); void ff_pred8x8l_vertical_8_mmi(uint8_t *src, int has_topleft, int has_topright, ptrdiff_t stride); void ff_pred4x4_dc_8_mmi(uint8_t *src, const uint8_t *topright, |