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.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/hevcdsp.h') diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h index aad96db3ad..72784645e9 100644 --- a/libavcodec/hevcdsp.h +++ b/libavcodec/hevcdsp.h @@ -67,9 +67,9 @@ typedef struct HEVCDSPContext { void (*put_unweighted_pred)(uint8_t *dst, ptrdiff_t dststride, int16_t *src, ptrdiff_t srcstride, int width, int height); - void (*put_weighted_pred_avg)(uint8_t *dst, ptrdiff_t dststride, - int16_t *src1, int16_t *src2, - ptrdiff_t srcstride, int width, int height); + void (*put_unweighted_pred_avg)(uint8_t *dst, ptrdiff_t dststride, + int16_t *src1, int16_t *src2, + ptrdiff_t srcstride, int width, int height); void (*weighted_pred)(uint8_t denom, int16_t wlxFlag, int16_t olxFlag, uint8_t *dst, ptrdiff_t dststride, int16_t *src, ptrdiff_t srcstride, int width, int height); -- cgit v1.2.3