1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/arm/vp8: Don't discard const

Forgotten in 25e1986e68.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2024-03-28 23:28:11 +01:00
parent 0e5f71230a
commit 199c479b9a

View File

@ -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 */