From d8ebb6157d12183ed3fc987cd2ba18b404758828 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 12 Jul 2015 07:50:28 +0200 Subject: hevcdsp: fix a function name put_weighted_pred_avg should be put_unweighted_pred_avg, there is no weighting there. --- libavcodec/hevcdsp_template.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/hevcdsp_template.c') diff --git a/libavcodec/hevcdsp_template.c b/libavcodec/hevcdsp_template.c index ae7e0217cc..390f683295 100644 --- a/libavcodec/hevcdsp_template.c +++ b/libavcodec/hevcdsp_template.c @@ -1033,10 +1033,10 @@ static void FUNC(put_unweighted_pred)(uint8_t *_dst, ptrdiff_t _dststride, } } -static void FUNC(put_weighted_pred_avg)(uint8_t *_dst, ptrdiff_t _dststride, - int16_t *src1, int16_t *src2, - ptrdiff_t srcstride, - int width, int height) +static void FUNC(put_unweighted_pred_avg)(uint8_t *_dst, ptrdiff_t _dststride, + int16_t *src1, int16_t *src2, + ptrdiff_t srcstride, + int width, int height) { int x, y; pixel *dst = (pixel *)_dst; -- cgit v1.2.3