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:50:44 +0200 |
commit | 7b4c46050e6824febb8f16d28d5148741aa8ad1a (patch) | |
tree | c9c8aa4cc0b97732bf2776038952a5617bb1c0e9 /libavcodec/lossless_videodsp.h | |
parent | 550ae6c02f61089bb459d95727c8e00d56cdd965 (diff) | |
download | ffmpeg-7b4c46050e6824febb8f16d28d5148741aa8ad1a.tar.gz |
rename add_hfyu_left_prediction_int16 to add_hfyu_left_pred_int16
This makes the naming more consistent with the 8bit variant
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/lossless_videodsp.h')
-rw-r--r-- | libavcodec/lossless_videodsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lossless_videodsp.h b/libavcodec/lossless_videodsp.h index 0ce3d70d2c..040902e7ba 100644 --- a/libavcodec/lossless_videodsp.h +++ b/libavcodec/lossless_videodsp.h @@ -31,7 +31,7 @@ typedef struct LLVidDSPContext { void (*sub_hfyu_median_pred_int16)(uint16_t *dst, const uint16_t *src1, const uint16_t *src2, unsigned mask, int w, int *left, int *left_top); void (*add_hfyu_median_pred_int16)(uint16_t *dst, const uint16_t *top, const uint16_t *diff, unsigned mask, int w, int *left, int *left_top); - int (*add_hfyu_left_prediction_int16)(uint16_t *dst, const uint16_t *src, unsigned mask, int w, unsigned left); + int (*add_hfyu_left_pred_int16)(uint16_t *dst, const uint16_t *src, unsigned mask, int w, unsigned left); } LLVidDSPContext; void ff_llviddsp_init(LLVidDSPContext *llviddsp, AVCodecContext *avctx); |