mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/x86/hevcdsp_init: Fix "warning: assignment from incompatible pointer type"
This commit is contained in:
parent
d7e162d46b
commit
ca6b33b8bd
|
@ -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);
|
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) \
|
#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);
|
uint8_t *_no_p, uint8_t *_no_q);
|
||||||
|
|
||||||
#define LFC_FUNCS(type, depth, opt) \
|
#define LFC_FUNCS(type, depth, opt) \
|
||||||
|
|
Loading…
Reference in New Issue