Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-26 08:50:01 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-31 04:18:19 +0300
commite7cb7c762abca7444ed3a5a2a839b10c05c455f3 (patch)
tree954e4bf0732e47dedcc1ccef2640bda0e761472a /libavcodec/cfhdencdsp.h
parentdc3e25e4d3c152ff87030e89247b3e8d9bdef925 (diff)
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.h4
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);