summaryrefslogtreecommitdiff
path: root/libavcodec/videodsp.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-26 04:50:55 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-31 03:14:34 +0200
commitaf43da3e4d861cd408292aefed0dea2121d5521a (patch)
tree0ac6937ee93f1cbe9012023f074671cb0ba8a08e /libavcodec/videodsp.c
parent2793e4353f2ec11084bcdf211c32649c47a704bc (diff)
avcodec/videodsp: Constify buf in VideoDSPContext.prefetch
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/videodsp.c')
-rw-r--r--libavcodec/videodsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/videodsp.c b/libavcodec/videodsp.c
index 90dc1aacbd..bdff2e76f5 100644
--- a/libavcodec/videodsp.c
+++ b/libavcodec/videodsp.c
@@ -32,7 +32,7 @@
#include "videodsp_template.c"
#undef BIT_DEPTH
-static void just_return(uint8_t *buf, ptrdiff_t stride, int h)
+static void just_return(const uint8_t *buf, ptrdiff_t stride, int h)
{
}