diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-26 07:50:01 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-31 03:18:19 +0200 |
commit | e7cb7c762abca7444ed3a5a2a839b10c05c455f3 (patch) | |
tree | 954e4bf0732e47dedcc1ccef2640bda0e761472a /libavcodec/cfhdencdsp.h | |
parent | dc3e25e4d3c152ff87030e89247b3e8d9bdef925 (diff) | |
download | ffmpeg-e7cb7c762abca7444ed3a5a2a839b10c05c455f3.tar.gz |
avcodec/cfhdencdsp: Constify input pointers
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/cfhdencdsp.h')
-rw-r--r-- | libavcodec/cfhdencdsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cfhdencdsp.h b/libavcodec/cfhdencdsp.h index b3aac8d0a7..d234b93797 100644 --- a/libavcodec/cfhdencdsp.h +++ b/libavcodec/cfhdencdsp.h @@ -23,12 +23,12 @@ #include <stdint.h> typedef struct CFHDEncDSPContext { - void (*horiz_filter)(int16_t *input, int16_t *low, int16_t *high, + void (*horiz_filter)(const int16_t *input, int16_t *low, int16_t *high, ptrdiff_t in_stride, ptrdiff_t low_stride, ptrdiff_t high_stride, int width, int height); - void (*vert_filter)(int16_t *input, int16_t *low, int16_t *high, + void (*vert_filter)(const int16_t *input, int16_t *low, int16_t *high, ptrdiff_t in_stride, ptrdiff_t low_stride, ptrdiff_t high_stride, int width, int height); |