diff options
author | James Almer <jamrial@gmail.com> | 2017-01-08 11:56:03 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-01-12 22:53:05 -0300 |
commit | 6d4c9f2ade7cccc5014d2fdebbba96e3e135ae1c (patch) | |
tree | ae4366d57127b1927b7ae5fbc811f77c4ff8a8cd /libavcodec/huffyuvdec.c | |
parent | 47f212329e5d73c81e2c67acd6a481bc0fe687b2 (diff) | |
download | ffmpeg-6d4c9f2ade7cccc5014d2fdebbba96e3e135ae1c.tar.gz |
lossless_videodsp: rename add_hfyu_left_pred_int16 to add_left_pred_int16
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/huffyuvdec.c')
-rw-r--r-- | libavcodec/huffyuvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuvdec.c b/libavcodec/huffyuvdec.c index c79dda4c90..c68eadd933 100644 --- a/libavcodec/huffyuvdec.c +++ b/libavcodec/huffyuvdec.c @@ -882,7 +882,7 @@ static int left_prediction(HYuvContext *s, uint8_t *dst, const uint8_t *src, int if (s->bps <= 8) { return s->llviddsp.add_left_pred(dst, src, w, acc); } else { - return s->llviddsp.add_hfyu_left_pred_int16(( uint16_t *)dst, (const uint16_t *)src, s->n-1, w, acc); + return s->llviddsp.add_left_pred_int16(( uint16_t *)dst, (const uint16_t *)src, s->n-1, w, acc); } } |