]> granicus.if.org Git - libvpx/commitdiff
Renaming vp9_extra_bit_struct to vp9_extra_bit.
authorDmitry Kovalev <dkovalev@google.com>
Fri, 19 Apr 2013 18:14:33 +0000 (11:14 -0700)
committerDmitry Kovalev <dkovalev@google.com>
Fri, 19 Apr 2013 18:14:33 +0000 (11:14 -0700)
Change-Id: Ie4713da125e954c1d30e1d4cbeb38666fce90ccc

vp9/common/vp9_entropy.c
vp9/common/vp9_entropy.h
vp9/encoder/vp9_bitstream.c
vp9/encoder/vp9_tokenize.c

index 5e6cba2ed903fc1aa775c3e845ffc25c8441e207..5b3ddfbc239f85a0a53cfaa0c3285533d434736a 100644 (file)
@@ -1310,7 +1310,7 @@ static void init_bit_trees() {
   init_bit_tree(cat6, 14);
 }
 
-vp9_extra_bit_struct vp9_extra_bits[12] = {
+vp9_extra_bit vp9_extra_bits[12] = {
   { 0, 0, 0, 0},
   { 0, 0, 0, 1},
   { 0, 0, 0, 2},
index db167420ccd9790d157bb6e3f5f5098efdaa5c70..3cae94649725b176260ae1d90e95c18e2a0609dc 100644 (file)
@@ -45,11 +45,11 @@ extern struct vp9_token vp9_coef_encodings[MAX_ENTROPY_TOKENS];
 typedef struct {
   vp9_tree_p tree;
   const vp9_prob *prob;
-  int Len;
+  int len;
   int base_val;
-} vp9_extra_bit_struct;
+} vp9_extra_bit;
 
-extern vp9_extra_bit_struct vp9_extra_bits[12];    /* indexed by token value */
+extern vp9_extra_bit vp9_extra_bits[12];    /* indexed by token value */
 
 #define PROB_UPDATE_BASELINE_COST   7
 
index d4ccf8ca2242aa7641791562931ecd9bc1874e76..7393102d9ffe0d128ed94d51c488a11e90009dc9 100644 (file)
@@ -422,7 +422,7 @@ static void pack_mb_tokens(vp9_writer* const bc,
   while (p < stop) {
     const int t = p->token;
     const struct vp9_token *const a = vp9_coef_encodings + t;
-    const vp9_extra_bit_struct *const b = vp9_extra_bits + t;
+    const vp9_extra_bit *const b = vp9_extra_bits + t;
     int i = 0;
     const unsigned char *pp = p->context_tree;
     int v = a->value;
@@ -448,12 +448,12 @@ static void pack_mb_tokens(vp9_writer* const bc,
 
 
     if (b->base_val) {
-      const int e = p->extra, L = b->Len;
+      const int e = p->extra, l = b->len;
 
-      if (L) {
+      if (l) {
         const unsigned char *pp = b->prob;
         int v = e >> 1;
-        int n = L;              /* number of bits in v, assumed nonzero */
+        int n = l;              /* number of bits in v, assumed nonzero */
         int i = 0;
 
         do {
index 6b201488fc1fa76813976ed4db878b5758b99ead..398b4bbe61158b43a604bbf8795fb53fb641604a 100644 (file)
@@ -59,7 +59,7 @@ const int *vp9_dct_value_cost_ptr;
 static void fill_value_tokens() {
 
   TOKENVALUE *const t = dct_value_tokens + DCT_MAX_VALUE;
-  vp9_extra_bit_struct *const e = vp9_extra_bits;
+  vp9_extra_bit *const e = vp9_extra_bits;
 
   int i = -DCT_MAX_VALUE;
   int sign = 1;
@@ -88,14 +88,14 @@ static void fill_value_tokens() {
     // initialize the cost for extra bits for all possible coefficient value.
     {
       int cost = 0;
-      vp9_extra_bit_struct *p = vp9_extra_bits + t[i].token;
+      vp9_extra_bit *p = vp9_extra_bits + t[i].token;
 
       if (p->base_val) {
         const int extra = t[i].extra;
-        const int Length = p->Len;
+        const int length = p->len;
 
-        if (Length)
-          cost += treed_cost(p->tree, p->prob, extra >> 1, Length);
+        if (length)
+          cost += treed_cost(p->tree, p->prob, extra >> 1, length);
 
         cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
         dct_value_cost[i + DCT_MAX_VALUE] = cost;