vf_blend: Reduce number of arguments for kernel function

This commit is contained in:
Timothy Gu
2016-02-14 02:01:35 +00:00
parent ee281b884e
commit 4574323973
4 changed files with 17 additions and 17 deletions

View File

@@ -67,7 +67,7 @@ typedef struct FilterParams {
void (*blend)(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 start, ptrdiff_t end,
ptrdiff_t width, ptrdiff_t height,
struct FilterParams *param, double *values);
} FilterParams;