From: Loren Merritt Date: Tue, 25 Mar 2008 01:25:19 +0000 (-0600) Subject: reduce the size of some cabac arrays X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=727377bf7582bf4c69083f2bf94b4e6c5965032c;p=libx264 reduce the size of some cabac arrays --- diff --git a/encoder/rdo.c b/encoder/rdo.c index 31c720aa..bd481cf4 100644 --- a/encoder/rdo.c +++ b/encoder/rdo.c @@ -26,8 +26,8 @@ #define RDO_SKIP_BS -static int cabac_prefix_transition[15][128]; -static int cabac_prefix_size[15][128]; +static uint8_t cabac_prefix_transition[15][128]; +static uint16_t cabac_prefix_size[15][128]; /* CAVLC: produces exactly the same bit count as a normal encode */ /* this probably still leaves some unnecessary computations */