summaryrefslogtreecommitdiff
path: root/libavcodec/hevcdsp.h
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.h
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.h')
-rw-r--r--libavcodec/hevcdsp.h6
1 files changed, 3 insertions, 3 deletions
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);