Index: source/libvpx/vp9/encoder/vp9_firstpass.h |
=================================================================== |
--- source/libvpx/vp9/encoder/vp9_firstpass.h (revision 290053) |
+++ source/libvpx/vp9/encoder/vp9_firstpass.h (working copy) |
@@ -19,6 +19,20 @@ |
#endif |
#if CONFIG_FP_MB_STATS |
+ |
+#define FPMB_DCINTRA_MASK 0x01 |
+ |
+#define FPMB_MOTION_ZERO_MASK 0x02 |
+#define FPMB_MOTION_LEFT_MASK 0x04 |
+#define FPMB_MOTION_RIGHT_MASK 0x08 |
+#define FPMB_MOTION_UP_MASK 0x10 |
+#define FPMB_MOTION_DOWN_MASK 0x20 |
+ |
+#define FPMB_ERROR_SMALL_MASK 0x40 |
+#define FPMB_ERROR_LARGE_MASK 0x80 |
+#define FPMB_ERROR_SMALL_TH 2000 |
+#define FPMB_ERROR_LARGE_TH 48000 |
+ |
typedef struct { |
uint8_t *mb_stats_start; |
uint8_t *mb_stats_end; |