From 727377bf7582bf4c69083f2bf94b4e6c5965032c Mon Sep 17 00:00:00 2001 From: Loren Merritt Date: Mon, 24 Mar 2008 19:25:19 -0600 Subject: [PATCH] reduce the size of some cabac arrays --- encoder/rdo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.40.0