shithub: libvpx

Download patch

ref: 04092764f772639babf147162d3c5bf66028dd2e
parent: cdea4a7c6646b572274f84cf0791012966edca89
author: James Zern <jzern@google.com>
date: Fri Jul 12 13:08:39 EDT 2013

VP9_COMMON: remove unused framerate/bitrate

+ VP8_COMMON: place them under CONFIG_POSTPROC_VISUALIZER

Change-Id: I2702d5a3e1134b9c5f7ddc14b4173955a400f2cf

--- a/vp8/common/onyxc_int.h
+++ b/vp8/common/onyxc_int.h
@@ -165,8 +165,10 @@
 #ifdef PACKET_TESTING
     VP8_HEADER oh;
 #endif
+#if CONFIG_POSTPROC_VISUALIZER
     double bitrate;
     double framerate;
+#endif
 
 #if CONFIG_MULTITHREAD
     int processor_core_count;
--- a/vp9/common/vp9_onyxc_int.h
+++ b/vp9/common/vp9_onyxc_int.h
@@ -255,9 +255,6 @@
   int near_boffset[3];
   int version;
 
-  double bitrate;
-  double framerate;
-
 #if CONFIG_POSTPROC
   struct postproc_state  postproc_state;
 #endif
--