From bf72c0410d90ccbf9ac1eea27e12d7fdda594dd2 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 28 Feb 2012 20:07:26 +0100 Subject: [PATCH] cook: add const to quant_index_table of categorize() Signed-off-by: Michael Niedermayer --- libavcodec/cook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cook.c b/libavcodec/cook.c index 6598790877..08b51d813b 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -399,7 +399,7 @@ static void decode_envelope(COOKContext *q, COOKSubpacket *p, * @param category pointer to the category array * @param category_index pointer to the category_index array */ -static void categorize(COOKContext *q, COOKSubpacket *p, int *quant_index_table, +static void categorize(COOKContext *q, COOKSubpacket *p, const int *quant_index_table, int *category, int *category_index) { int exp_idx, bias, tmpbias1, tmpbias2, bits_left, num_bits, index, v, i, j;