Commit 648dbae5 authored by Michael Niedermayer's avatar Michael Niedermayer

vf_idet: fix pointer type (const) warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b7fe9c7a
......@@ -49,7 +49,7 @@ typedef struct {
AVFilterBufferRef *next;
AVFilterBufferRef *prev;
AVFilterBufferRef *out;
int (*filter_line)(uint8_t *prev, uint8_t *cur, uint8_t *next, int w);
int (*filter_line)(const uint8_t *prev, const uint8_t *cur, const uint8_t *next, int w);
const AVPixFmtDescriptor *csp;
} IDETContext;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment