]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/vp3data: combine eob_run_base and eob_run_get_bits tables
authorPeter Ross <pross@xvid.org>
Fri, 24 May 2019 10:10:32 +0000 (20:10 +1000)
committerPeter Ross <pross@xvid.org>
Fri, 7 Jun 2019 23:37:26 +0000 (09:37 +1000)
libavcodec/vp3.c
libavcodec/vp3data.h

index b248c904139616cf9f73b683711ab994c4e0344e..63f60c9109b014d65a66630e624b75a453ed82b8 100644 (file)
@@ -988,9 +988,9 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
         token = get_vlc2(gb, vlc_table, 11, 3);
         /* use the token to get a zero run, a coefficient, and an eob run */
         if ((unsigned) token <= 6U) {
-            eob_run = eob_run_base[token];
-            if (eob_run_get_bits[token])
-                eob_run += get_bits(gb, eob_run_get_bits[token]);
+            eob_run = eob_run_table[token].base;
+            if (eob_run_table[token].bits)
+                eob_run += get_bits(gb, eob_run_table[token].bits);
 
             if (!eob_run)
                 eob_run = INT_MAX;
index c82b1b3a8642ab1813a7e1b829a4b6e5558d6fa2..d520a10c7683581fa9eb5cb85ebcfdc087fad768 100644 (file)
@@ -198,11 +198,10 @@ static const int8_t fixed_motion_vector_table[64] = {
 };
 
 /* only tokens 0..6 indicate eob runs */
-static const uint8_t eob_run_base[7] = {
-    1, 2, 3, 4, 8, 16, 0
-};
-static const uint8_t eob_run_get_bits[7] = {
-    0, 0, 0, 2, 3, 4, 12
+static const struct {
+    uint8_t base, bits;
+} eob_run_table[7] = {
+    {1, 0}, {2, 0}, {3, 0}, {4, 2}, {8, 3}, {16, 4}, {0, 12}
 };
 
 static const uint8_t zero_run_base[32] = {