Moving MBGRAPH_{MB, FRAME}_STATS structs to vp9_mbgraph.h.
authorDmitry Kovalev <dkovalev@google.com>
Mon, 3 Feb 2014 20:35:06 +0000 (12:35 -0800)
committerDmitry Kovalev <dkovalev@google.com>
Mon, 3 Feb 2014 20:35:06 +0000 (12:35 -0800)
Change-Id: I424c79735a7f3bbf6bf9c1391ff53aa78abae624

vp9/encoder/vp9_mbgraph.h
vp9/encoder/vp9_onyx_int.h

index 79dd2bc..bc2a704 100644 (file)
 extern "C" {
 #endif
 
-void vp9_update_mbgraph_stats(VP9_COMP *cpi);
+typedef struct {
+  struct {
+    int err;
+    union {
+      int_mv mv;
+      MB_PREDICTION_MODE mode;
+    } m;
+  } ref[MAX_REF_FRAMES];
+} MBGRAPH_MB_STATS;
+
+typedef struct {
+  MBGRAPH_MB_STATS *mb_stats;
+} MBGRAPH_FRAME_STATS;
+
+struct VP9_COMP;
+
+void vp9_update_mbgraph_stats(struct VP9_COMP *cpi);
 
 #ifdef __cplusplus
 }  // extern "C"
index b42cd36..26a7b0a 100644 (file)
@@ -24,6 +24,7 @@
 
 #include "vp9/encoder/vp9_encodemb.h"
 #include "vp9/encoder/vp9_lookahead.h"
+#include "vp9/encoder/vp9_mbgraph.h"
 #include "vp9/encoder/vp9_mcomp.h"
 #include "vp9/encoder/vp9_quantize.h"
 #include "vp9/encoder/vp9_ratectrl.h"
@@ -100,20 +101,6 @@ typedef struct {
   double count;
 } FIRSTPASS_STATS;
 
-typedef struct {
-  struct {
-    int err;
-    union {
-      int_mv mv;
-      MB_PREDICTION_MODE mode;
-    } m;
-  } ref[MAX_REF_FRAMES];
-} MBGRAPH_MB_STATS;
-
-typedef struct {
-  MBGRAPH_MB_STATS *mb_stats;
-} MBGRAPH_FRAME_STATS;
-
 // This enumerator type needs to be kept aligned with the mode order in
 // const MODE_DEFINITION vp9_mode_order[MAX_MODES] used in the rd code.
 typedef enum {