]> granicus.if.org Git - libvpx/commitdiff
vp9_aq_complexity.c: remove unused macros
authorJames Zern <jzern@google.com>
Wed, 3 Feb 2016 01:42:07 +0000 (17:42 -0800)
committerJames Zern <jzern@google.com>
Wed, 3 Feb 2016 02:01:30 +0000 (18:01 -0800)
DEFAULT_COMPLEXITY
VAR_STRENGTH_STEP

unused since first commit

Change-Id: I4a47544098caf0d72e571633b7776146be88237c

vp9/encoder/vp9_aq_complexity.c

index e5973220ed24b734c223778b402dcc1dd21c990c..2d979ec70bc8cf5deec07293779967d50bddf0af 100644 (file)
@@ -35,9 +35,6 @@ static const double aq_c_var_thresholds[AQ_C_STRENGTHS][AQ_C_SEGMENTS] =
     {-3.5, -2.5, -1.5, 100.00, 100.0},
     {-3.0, -2.0, -1.0, 100.00, 100.0} };
 
-#define DEFAULT_COMPLEXITY 64
-
-
 static int get_aq_c_strength(int q_index, vpx_bit_depth_t bit_depth) {
   // Approximate base quatizer (truncated to int)
   const int base_quant = vp9_ac_quant(q_index, 0, bit_depth) / 4;
@@ -107,7 +104,6 @@ void vp9_setup_in_frame_q_adj(VP9_COMP *cpi) {
 
 #define DEFAULT_LV_THRESH 10.0
 #define MIN_DEFAULT_LV_THRESH 8.0
-#define VAR_STRENGTH_STEP 0.25
 // Select a segment for the current block.
 // The choice of segment for a block depends on the ratio of the projected
 // bits for the block vs a target average and its spatial complexity.