diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-07-12 07:50:28 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-08-21 08:46:05 +0200 |
commit | d8ebb6157d12183ed3fc987cd2ba18b404758828 (patch) | |
tree | d4fec4fc6d9d5d94ba7a8ff272fa01e1cb43df75 /libavcodec/hevcdsp.h | |
parent | a1926a29fb4325afa46842883f197c74d4535c36 (diff) | |
download | ffmpeg-d8ebb6157d12183ed3fc987cd2ba18b404758828.tar.gz |
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.h | 6 |
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); |