diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-22 16:36:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-22 16:36:12 +0200 |
commit | ca6b33b8bd5e2a046fd67480a709d7cf063d3a98 (patch) | |
tree | c681fc33be6dd438df541b4dad4eefaafe9aaa8c /libavcodec | |
parent | d7e162d46b4a0fc03ca5161cdcac840152f048cb (diff) | |
download | ffmpeg-ca6b33b8bd5e2a046fd67480a709d7cf063d3a98.tar.gz |
avcodec/x86/hevcdsp_init: Fix "warning: assignment from incompatible pointer type"
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/hevcdsp_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/hevcdsp_init.c b/libavcodec/x86/hevcdsp_init.c index 2c76766482..67598635e8 100644 --- a/libavcodec/x86/hevcdsp_init.c +++ b/libavcodec/x86/hevcdsp_init.c @@ -33,7 +33,7 @@ void ff_hevc_ ## DIR ## _loop_filter_chroma_ ## DEPTH ## _ ## OPT(uint8_t *_pix, ptrdiff_t _stride, int *_tc, uint8_t *_no_p, uint8_t *_no_q); #define LFL_FUNC(DIR, DEPTH, OPT) \ -void ff_hevc_ ## DIR ## _loop_filter_luma_ ## DEPTH ## _ ## OPT(uint8_t *_pix, ptrdiff_t stride, int *_beta, int *_tc, \ +void ff_hevc_ ## DIR ## _loop_filter_luma_ ## DEPTH ## _ ## OPT(uint8_t *_pix, ptrdiff_t stride, int _beta, int *_tc, \ uint8_t *_no_p, uint8_t *_no_q); #define LFC_FUNCS(type, depth, opt) \ |