From 44bd95612e802d8dfc24aba5355c200faf33572e Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Mon, 2 Mar 2015 23:38:20 -0800 Subject: [PATCH] fix signature for VP8RecordCoeffTokens() Change-Id: Ia2fe764b7280931335237ced8190604129fae565 --- src/enc/vp8enci.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/enc/vp8enci.h b/src/enc/vp8enci.h index 16a4443f..3741fd27 100644 --- a/src/enc/vp8enci.h +++ b/src/enc/vp8enci.h @@ -345,7 +345,8 @@ int VP8EmitTokens(VP8TBuffer* const b, VP8BitWriter* const bw, const uint8_t* const probas, int final_pass); // record the coding of coefficients without knowing the probabilities yet -int VP8RecordCoeffTokens(int ctx, int coeff_type, int first, int last, +int VP8RecordCoeffTokens(const int ctx, const int coeff_type, + int first, int last, const int16_t* const coeffs, VP8TBuffer* const tokens);