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/ppc | |
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/ppc')
-rw-r--r-- | libavcodec/ppc/videodsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/videodsp.c b/libavcodec/ppc/videodsp.c index 915702252e..a7ab5a6a42 100644 --- a/libavcodec/ppc/videodsp.c +++ b/libavcodec/ppc/videodsp.c @@ -21,7 +21,7 @@ #include "libavutil/attributes.h" #include "libavcodec/videodsp.h" -static void prefetch_ppc(uint8_t *mem, ptrdiff_t stride, int h) +static void prefetch_ppc(const uint8_t *mem, ptrdiff_t stride, int h) { register const uint8_t *p = mem; do { |