]> granicus.if.org Git - libvpx/commitdiff
Removing unused select_cq_level() function.
authorDmitry Kovalev <dkovalev@google.com>
Mon, 10 Mar 2014 23:24:38 +0000 (16:24 -0700)
committerDmitry Kovalev <dkovalev@google.com>
Mon, 10 Mar 2014 23:24:38 +0000 (16:24 -0700)
Change-Id: I612a5d2b3ab1f9202d5b0421a82a80849603c40d

vp9/encoder/vp9_firstpass.c

index f548de5039f8d8be13b344dfc247f0428e9e9e84..3c10d85218da3dc3a031bae4af74dbb5e963bdff 100644 (file)
@@ -62,22 +62,6 @@ static void swap_yv12(YV12_BUFFER_CONFIG *a, YV12_BUFFER_CONFIG *b) {
   *b = temp;
 }
 
-static int select_cq_level(int qindex) {
-  int ret_val = QINDEX_RANGE - 1;
-  int i;
-
-  double target_q = (vp9_convert_qindex_to_q(qindex) * 0.5847) + 1.0;
-
-  for (i = 0; i < QINDEX_RANGE; ++i) {
-    if (target_q <= vp9_convert_qindex_to_q(i)) {
-      ret_val = i;
-      break;
-    }
-  }
-
-  return ret_val;
-}
-
 static int gfboost_qadjust(int qindex) {
   const double q = vp9_convert_qindex_to_q(qindex);
   return (int)((0.00000828 * q * q * q) +