Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-29 21:41:55 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-05-29 21:48:03 +0400
commitc2625c26c5e58edfa39360b51125f1ddd593e4db (patch)
tree6a2030197973c643876b85848c48f6a68f2a12dd /libavcodec/h264chroma.h
parentf8f42f48218138d37956407ebf10227eb86d4a2d (diff)
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.h4
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);