]> granicus.if.org Git - libvpx/commitdiff
vp9_picklpf.c: remove unused functions and params
authorYaowu Xu <yaowu@google.com>
Mon, 3 Mar 2014 23:16:25 +0000 (15:16 -0800)
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>
Wed, 5 Mar 2014 22:07:36 +0000 (14:07 -0800)
Change-Id: Ib4d850227cef35694c663feb157765a2cbf84699

vp9/encoder/vp9_onyx_if.c
vp9/encoder/vp9_picklpf.c
vp9/encoder/vp9_picklpf.h

index 95acf1df686d4a467151847fc86b0a0a2f259742..6b8e2956577d645f37da7b4a399064bd50b02c2e 100644 (file)
@@ -2665,7 +2665,6 @@ static void loopfilter_frame(VP9_COMP *cpi, VP9_COMMON *cm) {
   }
 
   if (lf->filter_level > 0) {
-    vp9_set_alt_lf_level(cpi, lf->filter_level);
     vp9_loop_filter_frame(cm, xd, lf->filter_level, 0, 0);
   }
 
index 5b0ecf79989e4930d01c0f3ad6c1c7cb631d3803..b5f49019913e068f834e01f0cc928cbaae956861 100644 (file)
 #include "vp9/common/vp9_loopfilter.h"
 #include "./vpx_scale_rtcd.h"
 
-static int get_min_filter_level(VP9_COMP *cpi, int base_qindex) {
-  return 0;
-}
-
-static int get_max_filter_level(VP9_COMP *cpi, int base_qindex) {
+static int get_max_filter_level(VP9_COMP *cpi) {
   return cpi->twopass.section_intra_rating > 8 ? MAX_LOOP_FILTER * 3 / 4
                                                : MAX_LOOP_FILTER;
 }
 
-// Stub function for now Alt LF not used
-void vp9_set_alt_lf_level(VP9_COMP *cpi, int filt_val) {
-}
 
 static int try_filter_frame(const YV12_BUFFER_CONFIG *sd, VP9_COMP *const cpi,
                             MACROBLOCKD *const xd, VP9_COMMON *const cm,
                             int filt_level, int partial_frame) {
   int filt_err;
 
-  vp9_set_alt_lf_level(cpi, filt_level);
   vp9_loop_filter_frame(cm, xd, filt_level, 1, partial_frame);
-
   filt_err = vp9_calc_ss_err(sd, cm->frame_to_show);
 
   // Re-instate the unfiltered frame
@@ -55,8 +46,8 @@ static void search_filter_level(const YV12_BUFFER_CONFIG *sd, VP9_COMP *cpi,
   MACROBLOCKD *const xd = &cpi->mb.e_mbd;
   VP9_COMMON *const cm = &cpi->common;
   struct loopfilter *const lf = &cm->lf;
-  const int min_filter_level = get_min_filter_level(cpi, cm->base_qindex);
-  const int max_filter_level = get_max_filter_level(cpi, cm->base_qindex);
+  const int min_filter_level = 0;
+  const int max_filter_level = get_max_filter_level(cpi);
   int best_err;
   int filt_best;
   int filt_direction = 0;
@@ -148,8 +139,8 @@ void vp9_pick_filter_level(const YV12_BUFFER_CONFIG *sd, VP9_COMP *cpi,
                                                     : cpi->oxcf.sharpness;
 
   if (method == 2) {
-    const int min_filter_level = get_min_filter_level(cpi, cm->base_qindex);
-    const int max_filter_level = get_max_filter_level(cpi, cm->base_qindex);
+    const int min_filter_level = 0;
+    const int max_filter_level = get_max_filter_level(cpi);
     const int q = vp9_ac_quant(cm->base_qindex, 0);
     // These values were determined by linear fitting the result of the
     // searched level
index 0fc1f88b3d165533edc9832dee9c303140fcec89..203ef871a48746d3da77c82486d38e5ca014e300 100644 (file)
@@ -19,8 +19,6 @@ extern "C" {
 struct yv12_buffer_config;
 struct VP9_COMP;
 
-void vp9_set_alt_lf_level(struct VP9_COMP *cpi, int filt_val);
-
 void vp9_pick_filter_level(const struct yv12_buffer_config *sd,
                            struct VP9_COMP *cpi, int method);
 #ifdef __cplusplus