summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/h264chroma.h
diff options
context:
space:
mode:
Diffstat (limited to 'ffmpeg/libavcodec/h264chroma.h')
-rw-r--r--ffmpeg/libavcodec/h264chroma.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ffmpeg/libavcodec/h264chroma.h b/ffmpeg/libavcodec/h264chroma.h
index 4e035b0..45bbc7d 100644
--- a/ffmpeg/libavcodec/h264chroma.h
+++ b/ffmpeg/libavcodec/h264chroma.h
@@ -24,15 +24,14 @@
typedef void (*h264_chroma_mc_func)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x, int y);
typedef struct H264ChromaContext {
- h264_chroma_mc_func put_h264_chroma_pixels_tab[3];
- h264_chroma_mc_func avg_h264_chroma_pixels_tab[3];
+ h264_chroma_mc_func put_h264_chroma_pixels_tab[4];
+ h264_chroma_mc_func avg_h264_chroma_pixels_tab[4];
} H264ChromaContext;
void ff_h264chroma_init(H264ChromaContext *c, int bit_depth);
void ff_h264chroma_init_arm(H264ChromaContext *c, int bit_depth);
void ff_h264chroma_init_ppc(H264ChromaContext *c, int bit_depth);
-void ff_h264chroma_init_sh4(H264ChromaContext *c, int bit_depth);
void ff_h264chroma_init_x86(H264ChromaContext *c, int bit_depth);
#endif /* AVCODEC_H264CHROMA_H */