diff options
Diffstat (limited to 'ffmpeg/libavcodec/h264chroma.c')
| -rw-r--r-- | ffmpeg/libavcodec/h264chroma.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ffmpeg/libavcodec/h264chroma.c b/ffmpeg/libavcodec/h264chroma.c index 3b780a0..5f8ed91 100644 --- a/ffmpeg/libavcodec/h264chroma.c +++ b/ffmpeg/libavcodec/h264chroma.c @@ -17,6 +17,7 @@ */ #include "config.h" +#include "libavutil/attributes.h" #include "h264chroma.h" #define BIT_DEPTH 8 @@ -31,11 +32,13 @@ c->put_h264_chroma_pixels_tab[0] = put_h264_chroma_mc8_ ## depth ## _c; \ c->put_h264_chroma_pixels_tab[1] = put_h264_chroma_mc4_ ## depth ## _c; \ c->put_h264_chroma_pixels_tab[2] = put_h264_chroma_mc2_ ## depth ## _c; \ + c->put_h264_chroma_pixels_tab[3] = put_h264_chroma_mc1_ ## depth ## _c; \ c->avg_h264_chroma_pixels_tab[0] = avg_h264_chroma_mc8_ ## depth ## _c; \ c->avg_h264_chroma_pixels_tab[1] = avg_h264_chroma_mc4_ ## depth ## _c; \ c->avg_h264_chroma_pixels_tab[2] = avg_h264_chroma_mc2_ ## depth ## _c; \ + c->avg_h264_chroma_pixels_tab[3] = avg_h264_chroma_mc1_ ## depth ## _c; \ -void ff_h264chroma_init(H264ChromaContext *c, int bit_depth) +av_cold void ff_h264chroma_init(H264ChromaContext *c, int bit_depth) { if (bit_depth > 8 && bit_depth <= 16) { SET_CHROMA(16); @@ -47,8 +50,6 @@ void ff_h264chroma_init(H264ChromaContext *c, int bit_depth) ff_h264chroma_init_arm(c, bit_depth); if (ARCH_PPC) ff_h264chroma_init_ppc(c, bit_depth); - if (ARCH_SH4) - ff_h264chroma_init_sh4(c, bit_depth); if (ARCH_X86) ff_h264chroma_init_x86(c, bit_depth); } |
