summaryrefslogtreecommitdiff
path: root/libavcodec/huffyuvdec.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-01-08 11:56:03 -0300
committerJames Almer <jamrial@gmail.com>2017-01-12 22:53:05 -0300
commit6d4c9f2ade7cccc5014d2fdebbba96e3e135ae1c (patch)
treeae4366d57127b1927b7ae5fbc811f77c4ff8a8cd /libavcodec/huffyuvdec.c
parent47f212329e5d73c81e2c67acd6a481bc0fe687b2 (diff)
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.c2
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);
}
}