From 7574bed43daab6ab4946bd20f89a34d9605b528d Mon Sep 17 00:00:00 2001 From: skal Date: Thu, 9 Jan 2014 17:30:25 +0100 Subject: [PATCH] fix comments related to array sizes thanks to foivos_g4 at hotmail dot com for spotting this. Change-Id: I8cd301bae58a6edbc3ef47607654bc21321721ca --- src/enc/vp8enci.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/enc/vp8enci.h b/src/enc/vp8enci.h index 20d0af92..4c51ac43 100644 --- a/src/enc/vp8enci.h +++ b/src/enc/vp8enci.h @@ -204,9 +204,9 @@ typedef struct { typedef struct { uint8_t segments_[3]; // probabilities for segment tree uint8_t skip_proba_; // final probability of being skipped. - ProbaArray coeffs_[NUM_TYPES][NUM_BANDS]; // 924 bytes + ProbaArray coeffs_[NUM_TYPES][NUM_BANDS]; // 1056 bytes StatsArray stats_[NUM_TYPES][NUM_BANDS]; // 4224 bytes - CostArray level_cost_[NUM_TYPES][NUM_BANDS]; // 11.4k + CostArray level_cost_[NUM_TYPES][NUM_BANDS]; // 13056 bytes int dirty_; // if true, need to call VP8CalculateLevelCosts() int use_skip_proba_; // Note: we always use skip_proba for now. int nb_skip_; // number of skipped blocks