diff mbox series

[FFmpeg-devel,18/18] avcodec/arm/vp8: Don't discard const

Message ID AS8P250MB0744AC2E8E921738C9E57DBC8F3B2@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit 199c479b9ac08e41625736cf0e44db354ca4ab0d
Headers show
Series [FFmpeg-devel,01/18] avcodec/mips/ac3dsp_mips: Add missing includes | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt March 28, 2024, 11:10 p.m. UTC
Forgotten in 25e1986e6816fabf7f6065d090994f8ad050e540.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/arm/vp8.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavcodec/arm/vp8.h b/libavcodec/arm/vp8.h
index 7c59a7d63d..6f128ffebe 100644
--- a/libavcodec/arm/vp8.h
+++ b/libavcodec/arm/vp8.h
@@ -29,7 +29,8 @@ 
 #define vp8_decode_block_coeffs_internal ff_decode_block_coeffs_armv6
 int ff_decode_block_coeffs_armv6(VPXRangeCoder *rc, int16_t block[16],
                                  uint8_t probs[8][3][NUM_DCT_TOKENS-1],
-                                 int i, uint8_t *token_prob, int16_t qmul[2]);
+                                 int i, const uint8_t *token_prob,
+                                 const int16_t qmul[2]);
 #endif
 
 #endif /* AVCODEC_ARM_VP8_H */