diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-26 04:50:55 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-31 03:14:34 +0200 |
commit | af43da3e4d861cd408292aefed0dea2121d5521a (patch) | |
tree | 0ac6937ee93f1cbe9012023f074671cb0ba8a08e /libavcodec/videodsp.c | |
parent | 2793e4353f2ec11084bcdf211c32649c47a704bc (diff) | |
download | ffmpeg-af43da3e4d861cd408292aefed0dea2121d5521a.tar.gz |
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.c | 2 |
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) { } |