diff options
author | James Almer <jamrial@gmail.com> | 2015-09-26 16:08:51 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-09-26 16:35:39 -0300 |
commit | 4e03f0ab08e27537512107cba6e357d34284a35f (patch) | |
tree | b0024009b2901f382fe0e63b23e037db9b733af0 | |
parent | af990d72b7e3fef3d09e1a79c53a80f1416a5ab2 (diff) | |
download | ffmpeg-4e03f0ab08e27537512107cba6e357d34284a35f.tar.gz |
checkasm/vp9dsp: add const to suppress "discards const qualifier" warnings
Reviewed-by: Henrik Gramner <henrik@gramner.com>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | tests/checkasm/vp9dsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/vp9dsp.c b/tests/checkasm/vp9dsp.c index 0f45a8b16f..d175e17b48 100644 --- a/tests/checkasm/vp9dsp.c +++ b/tests/checkasm/vp9dsp.c @@ -107,8 +107,8 @@ static void check_ipred(void) #define setdx(a,b,c,d) setpx(a,b,c-(d)+(rnd()%((d)*2+1))) #define setsx(a,b,c,d) setdx(a,b,c,(d) << (bit_depth - 8)) static void randomize_loopfilter_buffers(int bidx, int lineoff, int str, - int bit_depth, int dir, - int* E, int* F, int* H, int* I, + int bit_depth, int dir, const int *E, + const int *F, const int *H, const int *I, uint8_t *buf0, uint8_t *buf1) { uint32_t mask = (1 << bit_depth) - 1; |