diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-05 05:48:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-05 05:49:18 +0200 |
commit | ebf2c2c3a818338e508aa9b6e4e81ab2b2bc2d16 (patch) | |
tree | 7700a8469f366bb837b38ade7e73c9b5c9b061d9 /libavcodec/lossless_videodsp.h | |
parent | ae8e2d7634e09fa57941c4c644ba1b6e4cf9eec6 (diff) | |
download | ffmpeg-ebf2c2c3a818338e508aa9b6e4e81ab2b2bc2d16.tar.gz |
avcodec/lossless_videodsp: fix incompatible pointer type warning
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 c656fa14cf..6e82f64eea 100644 --- a/libavcodec/lossless_videodsp.h +++ b/libavcodec/lossless_videodsp.h @@ -31,7 +31,7 @@ typedef struct LLVidDSPContext { void (*sub_hfyu_median_prediction_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_prediction_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, int left); + int (*add_hfyu_left_prediction_int16)(uint16_t *dst, const uint16_t *src, unsigned mask, int w, unsigned left); } LLVidDSPContext; void ff_llviddsp_init(LLVidDSPContext *llviddsp, AVCodecContext *avctx); |