[FFmpeg-cvslog] avcodec/mips: fix build
Michael Niedermayer
git at videolan.org
Fri Mar 31 13:29:38 EEST 2017
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Fri Mar 31 03:21:47 2017 +0200| [c217027c1173668c13b243c42e9b7c9d21c64170] | committer: Michael Niedermayer
avcodec/mips: fix build
Found-by: Shivraj Patil <shivraj.patil at imgtec.com>
Suggested-by: "Ronald S. Bultje" <rsbultje at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c217027c1173668c13b243c42e9b7c9d21c64170
---
libavcodec/mips/hevcpred_mips.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/mips/hevcpred_mips.h b/libavcodec/mips/hevcpred_mips.h
index 12f57a2..f22feff 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
More information about the ffmpeg-cvslog
mailing list