diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-29 19:49:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-29 19:49:29 +0200 |
commit | 550ae6c02f61089bb459d95727c8e00d56cdd965 (patch) | |
tree | 456549db573773874b10ef6a3ecc5de36da87400 /libavcodec/huffyuvdec.c | |
parent | 40a4ab8ba4bffda8f4341484fcda4cf9be2b3d20 (diff) | |
download | ffmpeg-550ae6c02f61089bb459d95727c8e00d56cdd965.tar.gz |
rename add_hfyu_median_prediction_int16 to add_hfyu_median_pred_int16
This makes the naming more consistent with the 8bit variant
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 40cac8a7e5..b49c10b4dc 100644 --- a/libavcodec/huffyuvdec.c +++ b/libavcodec/huffyuvdec.c @@ -768,7 +768,7 @@ static void add_median_prediction(HYuvContext *s, uint8_t *dst, const uint8_t *s if (s->bps <= 8) { s->hdsp.add_hfyu_median_pred(dst, src, diff, w, left, left_top); } else { - s->llviddsp.add_hfyu_median_prediction_int16((uint16_t *)dst, (const uint16_t *)src, (const uint16_t *)diff, s->n-1, w, left, left_top); + s->llviddsp.add_hfyu_median_pred_int16((uint16_t *)dst, (const uint16_t *)src, (const uint16_t *)diff, s->n-1, w, left, left_top); } } static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, |