diff options
author | Mans Rullgard <mans@mansr.com> | 2011-10-21 12:34:08 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-10-21 12:49:01 +0100 |
commit | b034c95cc1a700b7d0849cedb1316989c3fb15be (patch) | |
tree | e3a5019378d9b7ef55477520c794b8e6895e75b5 /libavcodec/ppc | |
parent | b8bb9c026789ca9cd6d7a3a6263fc6e8a3467767 (diff) | |
download | ffmpeg-b034c95cc1a700b7d0849cedb1316989c3fb15be.tar.gz |
h264: fix ppc/altivec build
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r-- | libavcodec/ppc/h264_altivec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/h264_altivec.c b/libavcodec/ppc/h264_altivec.c index edc043c3c7..3163a37d3b 100644 --- a/libavcodec/ppc/h264_altivec.c +++ b/libavcodec/ppc/h264_altivec.c @@ -956,11 +956,11 @@ void biweight_h264_W_altivec(uint8_t *dst, uint8_t *src, int stride, int height, #define H264_WEIGHT(W) \ static void ff_weight_h264_pixels ## W ## _altivec(uint8_t *block, int stride, int height, \ int log2_denom, int weight, int offset){ \ - weight_h264_WxH_altivec(block, stride, height, log2_denom, weight, offset, W); \ + weight_h264_W_altivec(block, stride, height, log2_denom, weight, offset, W); \ }\ static void ff_biweight_h264_pixels ## W ## _altivec(uint8_t *dst, uint8_t *src, int stride, int height, \ int log2_denom, int weightd, int weights, int offset){ \ - biweight_h264_WxH_altivec(dst, src, stride, height, log2_denom, weightd, weights, offset, W); \ + biweight_h264_W_altivec(dst, src, stride, height, log2_denom, weightd, weights, offset, W); \ } H264_WEIGHT(16) |