shithub: libvpx

Download patch

ref: 2e23c74794cbbc467f801c6b883570625529d933
parent: 3dca0d44d2615e2fd45870fea90621244f6ed6bb
parent: e79a3ff5f39479a186747c7b725882974c93a689
author: Yaowu Xu <yaowu@google.com>
date: Fri Apr 5 09:34:57 EDT 2013

Merge "Removed a speed feature no longer used" into experimental

--- a/vp9/encoder/vp9_onyx_if.c
+++ b/vp9/encoder/vp9_onyx_if.c
@@ -732,7 +732,6 @@
   // best quality defaults
   sf->RD = 1;
   sf->search_method = NSTEP;
-  sf->improved_dct = 1;
   sf->auto_filter = 1;
   sf->recode_loop = 1;
   sf->quarter_pixel_search = 1;
@@ -791,8 +790,6 @@
         cpi->mode_check_freq[THR_COMP_SPLITLG] = 15;
         cpi->mode_check_freq[THR_COMP_SPLITLA] = 7;
 
-        sf->improved_dct = 0;
-
         // Only do recode loop on key frames, golden frames and
         // alt ref frames
         sf->recode_loop = 2;
@@ -809,7 +806,6 @@
   // so make sure they are always turned off.
   if (cpi->pass == 1) {
     sf->optimize_coefficients = 0;
-    sf->improved_dct = 0;
   }
 
   cpi->mb.fwd_txm16x16  = vp9_short_fdct16x16;
--- a/vp9/encoder/vp9_onyx_int.h
+++ b/vp9/encoder/vp9_onyx_int.h
@@ -257,7 +257,6 @@
 typedef struct {
   int RD;
   SEARCH_METHODS search_method;
-  int improved_dct;
   int auto_filter;
   int recode_loop;
   int iterative_sub_pixel;
--