diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-29 19:41:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-29 19:48:03 +0200 |
commit | c2625c26c5e58edfa39360b51125f1ddd593e4db (patch) | |
tree | 6a2030197973c643876b85848c48f6a68f2a12dd /libavcodec/h264chroma.h | |
parent | f8f42f48218138d37956407ebf10227eb86d4a2d (diff) | |
download | ffmpeg-c2625c26c5e58edfa39360b51125f1ddd593e4db.tar.gz |
mpegvideo: implement ff_put_h264_chroma_mc1 & ff_avg_h264_chroma_mc2
These are needed for lowres 3
This may fix Ticket2538
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264chroma.h')
-rw-r--r-- | libavcodec/h264chroma.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264chroma.h b/libavcodec/h264chroma.h index 46fae425ed..45bbc7d35e 100644 --- a/libavcodec/h264chroma.h +++ b/libavcodec/h264chroma.h @@ -24,8 +24,8 @@ 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); |