ffmpeg | branch: master | Michael Niedermayer <[email protected]> | Tue Jul 22 16:36:12 2014 +0200| [ca6b33b8bd5e2a046fd67480a709d7cf063d3a98] | committer: Michael Niedermayer
avcodec/x86/hevcdsp_init: Fix "warning: assignment from incompatible pointer type" > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ca6b33b8bd5e2a046fd67480a709d7cf063d3a98 --- libavcodec/x86/hevcdsp_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/x86/hevcdsp_init.c b/libavcodec/x86/hevcdsp_init.c index 2c76766..6759863 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) \ _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
