summaryrefslogtreecommitdiff
path: root/libavfilter/vf_uspp.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2014-12-12 01:45:29 +0100
committerClément Bœsch <u@pkh.me>2014-12-12 01:45:29 +0100
commit397859c4a830338a4cffb54701ed8e3e5986f92e (patch)
tree8f53719d4ddc758c8ed3a356da23092b3d944dfc /libavfilter/vf_uspp.c
parent73d88109c08e4a6b65672a1dc10e098f45813f4d (diff)
avfilter/uspp: make src const in store_slice_c()
Diffstat (limited to 'libavfilter/vf_uspp.c')
-rw-r--r--libavfilter/vf_uspp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_uspp.c b/libavfilter/vf_uspp.c
index 3b1f3b589f..9ddf5df501 100644
--- a/libavfilter/vf_uspp.c
+++ b/libavfilter/vf_uspp.c
@@ -158,7 +158,7 @@ static const uint8_t offset[511][2] = {
{ 3, 4}, {11, 4}, { 3,12}, {11,12}, { 7, 0}, {15, 0}, { 7, 8}, {15, 8},
};
-static void store_slice_c(uint8_t *dst, int16_t *src,
+static void store_slice_c(uint8_t *dst, const int16_t *src,
int dst_stride, int src_stride,
int width, int height, int log2_scale)
{