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.c | |
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.c')
-rw-r--r-- | libavcodec/hevcdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c index 0abee9b1d8..216101a083 100644 --- a/libavcodec/hevcdsp.c +++ b/libavcodec/hevcdsp.c @@ -162,7 +162,7 @@ void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth) hevcdsp->put_hevc_epel[1][1] = FUNC(put_hevc_epel_hv, depth); \ \ hevcdsp->put_unweighted_pred = FUNC(put_unweighted_pred, depth); \ - hevcdsp->put_weighted_pred_avg = FUNC(put_weighted_pred_avg, depth); \ + hevcdsp->put_unweighted_pred_avg = FUNC(put_unweighted_pred_avg, depth); \ \ hevcdsp->weighted_pred = FUNC(weighted_pred, depth); \ hevcdsp->weighted_pred_avg = FUNC(weighted_pred_avg, depth); \ |