summaryrefslogtreecommitdiff
path: root/libavcodec/hevcdsp_template.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-07-12 07:50:28 +0200
committerAnton Khirnov <anton@khirnov.net>2015-08-21 08:46:05 +0200
commitd8ebb6157d12183ed3fc987cd2ba18b404758828 (patch)
treed4fec4fc6d9d5d94ba7a8ff272fa01e1cb43df75 /libavcodec/hevcdsp_template.c
parenta1926a29fb4325afa46842883f197c74d4535c36 (diff)
hevcdsp: fix a function name
put_weighted_pred_avg should be put_unweighted_pred_avg, there is no weighting there.
Diffstat (limited to 'libavcodec/hevcdsp_template.c')
-rw-r--r--libavcodec/hevcdsp_template.c8
1 files changed, 4 insertions, 4 deletions
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;