diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-01-18 18:48:02 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-01-19 19:54:29 +0100 |
commit | fdc61267b471d5243cab21affb767868eafc1bc7 (patch) | |
tree | b85199b4e4e7ad78d1dfa9cb64a16550315a05eb /libavfilter/v360.h | |
parent | 4de2106fbf5301e0f504849f098abc3057f87599 (diff) | |
download | ffmpeg-fdc61267b471d5243cab21affb767868eafc1bc7.tar.gz |
avfilter/vf_v360: make more stuff const
Diffstat (limited to 'libavfilter/v360.h')
-rw-r--r-- | libavfilter/v360.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/v360.h b/libavfilter/v360.h index 88de9cbd7c..82bc37ef48 100644 --- a/libavfilter/v360.h +++ b/libavfilter/v360.h @@ -169,8 +169,8 @@ typedef struct V360Context { int (*remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs); - void (*remap_line)(uint8_t *dst, int width, const uint8_t *src, ptrdiff_t in_linesize, - const uint16_t *u, const uint16_t *v, const int16_t *ker); + void (*remap_line)(uint8_t *dst, int width, const uint8_t *const src, ptrdiff_t in_linesize, + const uint16_t *const u, const uint16_t *const v, const int16_t *const ker); } V360Context; void ff_v360_init(V360Context *s, int depth); |