diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-31 03:21:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-31 12:28:58 +0200 |
commit | c217027c1173668c13b243c42e9b7c9d21c64170 (patch) | |
tree | 75594b2bc85ba180b6aa4ac0bd90b60c648e4e24 | |
parent | 12bfed2fd9ed25cca3b9ad495197f63d466d130a (diff) | |
download | ffmpeg-c217027c1173668c13b243c42e9b7c9d21c64170.tar.gz |
avcodec/mips: fix build
Found-by: Shivraj Patil <shivraj.patil@imgtec.com>
Suggested-by: "Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/mips/hevcpred_mips.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mips/hevcpred_mips.h b/libavcodec/mips/hevcpred_mips.h index 12f57a2a3c..f22feff85e 100644 --- a/libavcodec/mips/hevcpred_mips.h +++ b/libavcodec/mips/hevcpred_mips.h @@ -21,7 +21,7 @@ #ifndef AVCODEC_MIPS_HEVCPRED_MIPS_H #define AVCODEC_MIPS_HEVCPRED_MIPS_H -#include "libavcodec/hevcdsp.h" +#include "libavcodec/hevcpred.h" void ff_hevc_intra_pred_planar_0_msa(uint8_t *dst, const uint8_t *src_top, @@ -67,7 +67,7 @@ void ff_pred_intra_pred_angular_3_msa(uint8_t *dst, const uint8_t *src_left, ptrdiff_t stride, int c_idx, int mode); -void ff_intra_pred_8_16x16_msa(HEVCContext *s, int x0, int y0, int c_idx); -void ff_intra_pred_8_32x32_msa(HEVCContext *s, int x0, int y0, int c_idx); +void ff_intra_pred_8_16x16_msa(struct HEVCContext *s, int x0, int y0, int c_idx); +void ff_intra_pred_8_32x32_msa(struct HEVCContext *s, int x0, int y0, int c_idx); #endif // #ifndef AVCODEC_MIPS_HEVCPRED_MIPS_H |