summaryrefslogtreecommitdiff
path: root/libavcodec/x86/mpegvideodsp.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-26 08:20:14 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-31 03:44:16 +0200
commit209a11053f3249e1f5f36a6a74089df92181d25a (patch)
treedc2a02664464a11c092570585133d5902455ce1c /libavcodec/x86/mpegvideodsp.c
parent966fc1230a68d4107994038b71c3200b069ed22e (diff)
avcodec/mpegvideodsp: Constify src pointers
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/x86/mpegvideodsp.c')
-rw-r--r--libavcodec/x86/mpegvideodsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/mpegvideodsp.c b/libavcodec/x86/mpegvideodsp.c
index 6009b64e07..ea1d941fba 100644
--- a/libavcodec/x86/mpegvideodsp.c
+++ b/libavcodec/x86/mpegvideodsp.c
@@ -25,7 +25,7 @@
#if HAVE_INLINE_ASM
-static void gmc_mmx(uint8_t *dst, uint8_t *src,
+static void gmc_mmx(uint8_t *dst, const uint8_t *src,
int stride, int h, int ox, int oy,
int dxx, int dxy, int dyx, int dyy,
int shift, int r, int width, int height)