]> granicus.if.org Git - libvpx/commitdiff
vp9_aq_360.c: remove some unused macros
authorJames Zern <jzern@google.com>
Wed, 3 Feb 2016 01:46:44 +0000 (17:46 -0800)
committerJames Zern <jzern@google.com>
Wed, 3 Feb 2016 02:01:49 +0000 (18:01 -0800)
ENERGY_MIN
ENERGY_MAX
ENERGY_SPAN
ENERGY_IN_BOUNDS

unused since first commit

Change-Id: I5507d36487aaee3e64f7a5fba582791ef9a533b0

vp9/encoder/vp9_aq_360.c

index 7f937344d762b944d4b2af6436129479678f3985..f8c187cc5d4f9676a78c6652e21054f5178ce4b2 100644 (file)
 #include "vp9/encoder/vp9_rd.h"
 #include "vp9/encoder/vp9_segmentation.h"
 
-#define ENERGY_MIN (-4)
-#define ENERGY_MAX (1)
-#define ENERGY_SPAN (ENERGY_MAX - ENERGY_MIN +  1)
-#define ENERGY_IN_BOUNDS(energy)\
-  assert((energy) >= ENERGY_MIN && (energy) <= ENERGY_MAX)
-
 static const double rate_ratio[MAX_SEGMENTS] =
   {1.0, 0.75, 0.6, 0.5, 0.4, 0.3, 0.25};