mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-17 15:08:09 +08:00
avfilter/blend: put slice parameters to a single struct
This should make future extensibility easier. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
@ -91,7 +91,7 @@ static void fn0(NAME)(const uint8_t *_top, ptrdiff_t top_linesize, \
|
||||
const uint8_t *_bottom, ptrdiff_t bottom_linesize, \
|
||||
uint8_t *_dst, ptrdiff_t dst_linesize, \
|
||||
ptrdiff_t width, ptrdiff_t height, \
|
||||
FilterParams *param, double *values, int starty) \
|
||||
FilterParams *param, SliceParams *sliceparam) \
|
||||
{ \
|
||||
const PIXEL *top = (const PIXEL *)_top; \
|
||||
const PIXEL *bottom = (const PIXEL *)_bottom; \
|
||||
|
Reference in New Issue
Block a user