X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=libavfilter%2Fvf_eq.c;fp=libavfilter%2Fvf_eq.c;h=ad2a37ea6e39784a36bec4f8d46de8d2849a45c7;hb=f5b3257c506e2eafc1538fa8056325acec291bd9;hp=7bbbaee2c5bd245886a0ee173c3583ccb83ea4fd;hpb=f8716d1e56d5019d070b30692d144c30a18fcf23;p=ffmpeg diff --git a/libavfilter/vf_eq.c b/libavfilter/vf_eq.c index 7bbbaee2c5b..ad2a37ea6e3 100644 --- a/libavfilter/vf_eq.c +++ b/libavfilter/vf_eq.c @@ -65,7 +65,7 @@ static void create_lut(EQParameters *param) } static void apply_lut(EQParameters *param, uint8_t *dst, int dst_stride, - uint8_t *src, int src_stride, int w, int h) + const uint8_t *src, int src_stride, int w, int h) { int x, y; @@ -80,7 +80,7 @@ static void apply_lut(EQParameters *param, uint8_t *dst, int dst_stride, } static void process_c(EQParameters *param, uint8_t *dst, int dst_stride, - uint8_t *src, int src_stride, int w, int h) + const uint8_t *src, int src_stride, int w, int h) { int x, y, pel;