summaryrefslogtreecommitdiff
path: root/libavfilter/x86
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-27 01:46:08 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-01-27 01:46:08 +0100
commitf5b3257c506e2eafc1538fa8056325acec291bd9 (patch)
tree48ea3eeb2de592de06d4aa2188f1f28153e847ee /libavfilter/x86
parentf8716d1e56d5019d070b30692d144c30a18fcf23 (diff)
avfilter/vf_eq: mark src as const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/x86')
-rw-r--r--libavfilter/x86/vf_eq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/x86/vf_eq.c b/libavfilter/x86/vf_eq.c
index 2e42cdf5ba..16f399505f 100644
--- a/libavfilter/x86/vf_eq.c
+++ b/libavfilter/x86/vf_eq.c
@@ -27,7 +27,7 @@
#if HAVE_MMX_INLINE && HAVE_6REGS
static void process_MMX(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 i;
int pel;