]> granicus.if.org Git - libvpx/commitdiff
enums.h: Combine related #defines into packed enums.
authorUrvang Joshi <urvang@google.com>
Tue, 20 Sep 2016 18:36:33 +0000 (11:36 -0700)
committerUrvang Joshi <urvang@google.com>
Thu, 22 Sep 2016 16:44:51 +0000 (09:44 -0700)
enums for BLOCK_SIZE, TX_SIZE and PREDICTION_MODE.

Note: These were converted to #defines earlier to save on memory:
https://chromium-review.googlesource.com/#/c/269854/

But we, instead, use attribute 'packed' (see here:
https://gcc.gnu.org/onlinedocs/gcc/Common-Type-Attributes.html#Common-Type-Attributes)
to ensure that these enums use the smallest possible integer type,
and so use smallest memory when used in structs/arrays etc.

Change-Id: If1fc136686b28847109c9f3a06f8728165e7e475

aom/aom_codec.h
av1/common/blockd.h
av1/common/enums.h
av1/common/pred_common.h
av1/encoder/bitstream.c
av1/encoder/rd.c
test/av1_quantize_test.cc

index e1c45525db9a3dc682c12d3c25ff383d5e007b7c..1d301d16b2cacf6a9d89220ac4273434f01f3627 100644 (file)
@@ -76,6 +76,17 @@ extern "C" {
 #define UNUSED
 #endif
 
+/*!\brief Decorator indicating that given struct/union/enum is packed */
+#ifndef ATTRIBUTE_PACKED
+#if defined(__GNUC__) && __GNUC__
+#define ATTRIBUTE_PACKED __attribute__((packed))
+#elif defined(_MSC_VER)
+#define ATTRIBUTE_PACKED
+#else
+#define ATTRIBUTE_PACKED
+#endif
+#endif /* ATTRIBUTE_PACKED */
+
 /*!\brief Current ABI version number
  *
  * \internal
index 40f88a30baa9aa02264b60be475cb91a147a0572..4a0466f07af94fd7c821244dfa6c2b005ba7cc80 100644 (file)
@@ -399,7 +399,7 @@ typedef struct macroblockd {
 static INLINE BLOCK_SIZE get_subsize(BLOCK_SIZE bsize,
                                      PARTITION_TYPE partition) {
   if (partition == PARTITION_INVALID)
-    return PARTITION_INVALID;
+    return BLOCK_INVALID;
   else
     return subsize_lookup[partition][bsize];
 }
@@ -756,8 +756,10 @@ static INLINE int is_interintra_allowed(const MB_MODE_INFO *mbmi) {
 static INLINE int is_interintra_allowed_bsize_group(const int group) {
   int i;
   for (i = 0; i < BLOCK_SIZES; i++) {
-    if (size_group_lookup[i] == group && is_interintra_allowed_bsize(i))
+    if (size_group_lookup[i] == group &&
+        is_interintra_allowed_bsize((BLOCK_SIZE)i)) {
       return 1;
+    }
   }
   return 0;
 }
index c9d321139da37241a1b63c791713f82255ab889f..c8776ef252729ec59554e5660e7c2bcc63090181 100644 (file)
@@ -13,6 +13,7 @@
 #define AV1_COMMON_ENUMS_H_
 
 #include "./aom_config.h"
+#include "aom/aom_codec.h"
 #include "aom/aom_integer.h"
 
 #ifdef __cplusplus
@@ -72,55 +73,49 @@ typedef enum BITSTREAM_PROFILE {
   MAX_PROFILES
 } BITSTREAM_PROFILE;
 
-#define BLOCK_4X4 0
-#define BLOCK_4X8 1
-#define BLOCK_8X4 2
-#define BLOCK_8X8 3
-#define BLOCK_8X16 4
-#define BLOCK_16X8 5
-#define BLOCK_16X16 6
-#define BLOCK_16X32 7
-#define BLOCK_32X16 8
-#define BLOCK_32X32 9
-#define BLOCK_32X64 10
-#define BLOCK_64X32 11
-#define BLOCK_64X64 12
-#if !CONFIG_EXT_PARTITION
-#define BLOCK_SIZES 13
-#else
-#define BLOCK_64X128 13
-#define BLOCK_128X64 14
-#define BLOCK_128X128 15
-#define BLOCK_SIZES 16
-#endif  // !CONFIG_EXT_PARTITION
-#define BLOCK_INVALID BLOCK_SIZES
-#define BLOCK_LARGEST (BLOCK_SIZES - 1)
-typedef uint8_t BLOCK_SIZE;
+// Note: Some enums use the attribute 'packed' to use smallest possible integer
+// type, so that we can save memory when they are used in structs/arrays.
+
+typedef enum ATTRIBUTE_PACKED {
+  BLOCK_4X4,
+  BLOCK_4X8,
+  BLOCK_8X4,
+  BLOCK_8X8,
+  BLOCK_8X16,
+  BLOCK_16X8,
+  BLOCK_16X16,
+  BLOCK_16X32,
+  BLOCK_32X16,
+  BLOCK_32X32,
+  BLOCK_32X64,
+  BLOCK_64X32,
+  BLOCK_64X64,
+#if CONFIG_EXT_PARTITION
+  BLOCK_64X128,
+  BLOCK_128X64,
+  BLOCK_128X128,
+#endif  // CONFIG_EXT_PARTITION
 
-#if CONFIG_EXT_PARTITION_TYPES
-typedef enum PARTITION_TYPE {
+  BLOCK_SIZES,
+  BLOCK_INVALID = BLOCK_SIZES,
+  BLOCK_LARGEST = (BLOCK_SIZES - 1)
+} BLOCK_SIZE;
+
+typedef enum {
   PARTITION_NONE,
   PARTITION_HORZ,
   PARTITION_VERT,
   PARTITION_SPLIT,
+#if CONFIG_EXT_PARTITION_TYPES
   PARTITION_HORZ_A,  // HORZ split and the left partition is split again
   PARTITION_HORZ_B,  // HORZ split and the right partition is split again
   PARTITION_VERT_A,  // VERT split and the top partition is split again
   PARTITION_VERT_B,  // VERT split and the bottom partition is split again
   EXT_PARTITION_TYPES,
+#endif  // CONFIG_EXT_PARTITION_TYPES
   PARTITION_TYPES = PARTITION_SPLIT + 1,
-  PARTITION_INVALID = EXT_PARTITION_TYPES
-} PARTITION_TYPE;
-#else
-typedef enum PARTITION_TYPE {
-  PARTITION_NONE,
-  PARTITION_HORZ,
-  PARTITION_VERT,
-  PARTITION_SPLIT,
-  PARTITION_TYPES,
-  PARTITION_INVALID = PARTITION_TYPES
+  PARTITION_INVALID = 255
 } PARTITION_TYPE;
-#endif  // CONFIG_EXT_PARTITION_TYPES
 
 typedef char PARTITION_CONTEXT;
 #define PARTITION_PLOFFSET 4  // number of probability models per block size
@@ -131,25 +126,23 @@ typedef char PARTITION_CONTEXT;
 #endif  // CONFIG_EXT_PARTITION
 
 // block transform size
-typedef uint8_t TX_SIZE;
-#define TX_4X4 ((TX_SIZE)0)    // 4x4 transform
-#define TX_8X8 ((TX_SIZE)1)    // 8x8 transform
-#define TX_16X16 ((TX_SIZE)2)  // 16x16 transform
-#define TX_32X32 ((TX_SIZE)3)  // 32x32 transform
-#define TX_SIZES ((TX_SIZE)4)
-#define TX_INVALID ((TX_SIZE)255)  // Invalid transform size
-
+typedef enum ATTRIBUTE_PACKED {
+  TX_4X4,    // 4x4 transform
+  TX_8X8,    // 8x8 transform
+  TX_16X16,  // 16x16 transform
+  TX_32X32,  // 32x32 transform
 #if CONFIG_EXT_TX
-#define TX_4X8 ((TX_SIZE)4)         // 4x8 transform
-#define TX_8X4 ((TX_SIZE)5)         // 8x4 transform
-#define TX_8X16 ((TX_SIZE)6)        // 8x16 transform
-#define TX_16X8 ((TX_SIZE)7)        // 16x8 transform
-#define TX_16X32 ((TX_SIZE)8)       // 16x32 transform
-#define TX_32X16 ((TX_SIZE)9)       // 32x16 transform
-#define TX_SIZES_ALL ((TX_SIZE)10)  // Includes rectangular transforms
-#else
-#define TX_SIZES_ALL ((TX_SIZE)4)
-#endif  // CONFIG_EXT_TX
+  TX_4X8,                   // 4x8 transform
+  TX_8X4,                   // 8x4 transform
+  TX_8X16,                  // 8x16 transform
+  TX_16X8,                  // 16x8 transform
+  TX_16X32,                 // 16x32 transform
+  TX_32X16,                 // 32x16 transform
+#endif                      // CONFIG_EXT_TX
+  TX_SIZES_ALL,             // Includes rectangular transforms
+  TX_SIZES = TX_32X32 + 1,  // Does NOT include rectangular transforms
+  TX_INVALID = 255          // Invalid transform size
+} TX_SIZE;
 
 #define MAX_TX_SIZE_LOG2 5
 #define MAX_TX_SIZE (1 << MAX_TX_SIZE_LOG2)
@@ -253,39 +246,37 @@ typedef enum {
   PALETTE_COLORS
 } PALETTE_COLOR;
 
-#define DC_PRED 0    // Average of above and left pixels
-#define V_PRED 1     // Vertical
-#define H_PRED 2     // Horizontal
-#define D45_PRED 3   // Directional 45  deg = round(arctan(1/1) * 180/pi)
-#define D135_PRED 4  // Directional 135 deg = 180 - 45
-#define D117_PRED 5  // Directional 117 deg = 180 - 63
-#define D153_PRED 6  // Directional 153 deg = 180 - 27
-#define D207_PRED 7  // Directional 207 deg = 180 + 27
-#define D63_PRED 8   // Directional 63  deg = round(arctan(2/1) * 180/pi)
-#define TM_PRED 9    // True-motion
-#define NEARESTMV 10
-#define NEARMV 11
-#define ZEROMV 12
-#define NEWMV 13
+typedef enum ATTRIBUTE_PACKED {
+  DC_PRED,    // Average of above and left pixels
+  V_PRED,     // Vertical
+  H_PRED,     // Horizontal
+  D45_PRED,   // Directional 45  deg = round(arctan(1/1) * 180/pi)
+  D135_PRED,  // Directional 135 deg = 180 - 45
+  D117_PRED,  // Directional 117 deg = 180 - 63
+  D153_PRED,  // Directional 153 deg = 180 - 27
+  D207_PRED,  // Directional 207 deg = 180 + 27
+  D63_PRED,   // Directional 63  deg = round(arctan(2/1) * 180/pi)
+  TM_PRED,    // True-motion
+  NEARESTMV,
+  NEARMV,
+  ZEROMV,
+  NEWMV,
 #if CONFIG_EXT_INTER
-#define NEWFROMNEARMV 14
-#define NEAREST_NEARESTMV 15
-#define NEAREST_NEARMV 16
-#define NEAR_NEARESTMV 17
-#define NEAR_NEARMV 18
-#define NEAREST_NEWMV 19
-#define NEW_NEARESTMV 20
-#define NEAR_NEWMV 21
-#define NEW_NEARMV 22
-#define ZERO_ZEROMV 23
-#define NEW_NEWMV 24
-#define MB_MODE_COUNT 25
-#else
-#define MB_MODE_COUNT 14
+  NEWFROMNEARMV,
+  NEAREST_NEARESTMV,
+  NEAREST_NEARMV,
+  NEAR_NEARESTMV,
+  NEAR_NEARMV,
+  NEAREST_NEWMV,
+  NEW_NEARESTMV,
+  NEAR_NEWMV,
+  NEW_NEARMV,
+  ZERO_ZEROMV,
+  NEW_NEWMV,
 #endif  // CONFIG_EXT_INTER
-typedef uint8_t PREDICTION_MODE;
-
-#define INTRA_MODES (TM_PRED + 1)
+  MB_MODE_COUNT,
+  INTRA_MODES = TM_PRED + 1
+} PREDICTION_MODE;
 
 typedef enum {
   SIMPLE_TRANSLATION = 0,
index 135b774c1b71e1092fbbaf91d1a8d346af4c44f3..8927f26c6ede8e0d7ebc6724b72d9509d33c23a3 100644 (file)
@@ -226,8 +226,8 @@ static void update_tx_counts(AV1_COMMON *cm, MACROBLOCKD *xd,
       const int offsetc = blk_col + ((i & 0x01) << bsl);
 
       if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue;
-      update_tx_counts(cm, xd, mbmi, plane_bsize, tx_size - 1, offsetr, offsetc,
-                       max_tx_size, ctx);
+      update_tx_counts(cm, xd, mbmi, plane_bsize, (TX_SIZE)(tx_size - 1),
+                       offsetr, offsetc, max_tx_size, ctx);
     }
   }
 }
index ce16fcf615916ace762dad5f38d65618b079a06e..b169ad06430cfa0088269c654856f63d53020ac9 100644 (file)
@@ -2132,7 +2132,7 @@ static void get_coef_counts_diff(AV1_COMP *cpi, int index,
   int i, j, k, l, m, tx_size, val;
   const int max_idx = cpi->common.coef_probs_update_idx;
   const TX_MODE tx_mode = cpi->common.tx_mode;
-  const TX_SIZE max_tx_size = tx_mode_to_biggest_tx_size[tx_mode];
+  const int max_tx_size = tx_mode_to_biggest_tx_size[tx_mode];
   const SUBFRAME_STATS *subframe_stats = &cpi->subframe_stats;
 
   assert(max_idx < COEF_PROBS_BUFS);
@@ -3265,7 +3265,7 @@ static void write_uncompressed_header(AV1_COMP *cpi,
   encode_quantization(cm, wb);
   encode_segmentation(cm, xd, wb);
   if (!cm->seg.enabled && xd->lossless[0])
-    cm->tx_mode = TX_4X4;
+    cm->tx_mode = ONLY_4X4;
   else
     write_txfm_mode(cm->tx_mode, wb);
 
index b56e3c14de59dd289790ff93bd32e3beb47c070c..0c80174070857b2477d87e1c47bdd5a359f3f3d9 100644 (file)
@@ -1069,7 +1069,7 @@ void av1_update_rd_thresh_fact(const AV1_COMMON *const cm,
     int mode;
     for (mode = 0; mode < top_mode; ++mode) {
       const BLOCK_SIZE min_size = AOMMAX(bsize - 1, BLOCK_4X4);
-      const BLOCK_SIZE max_size = AOMMIN(bsize + 2, cm->sb_size);
+      const BLOCK_SIZE max_size = AOMMIN(bsize + 2, (int)cm->sb_size);
       BLOCK_SIZE bs;
       for (bs = min_size; bs <= max_size; ++bs) {
         int *const fact = &factor_buf[bs][mode];
index 88cddb3511a9aadd434466fed810853dd9a686f5..db1c969278281ae34edf28777c302c42e91b68e5 100644 (file)
@@ -179,17 +179,13 @@ class AV1QuantizeTest : public ::testing::TestWithParam<QuantizeFuncParams> {
 
  private:
   TX_SIZE getTxSize(int count) {
-    TX_SIZE txSize = 0;
-    if (16 == count) {
-      txSize = 0;
-    } else if (64 == count) {
-      txSize = 1;
-    } else if (256 == count) {
-      txSize = 2;
-    } else if (1024 == count) {
-      txSize = 3;
+    switch (count) {
+      case 16: return TX_4X4;
+      case 64: return TX_8X8;
+      case 256: return TX_16X16;
+      case 1024: return TX_32X32;
+      default: return TX_4X4;
     }
-    return txSize;
   }
 
   QuantizeFuncParams params_;