summaryrefslogtreecommitdiff
path: root/vp8/common/mv.h
diff options
context:
space:
mode:
Diffstat (limited to 'vp8/common/mv.h')
-rw-r--r--vp8/common/mv.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/vp8/common/mv.h b/vp8/common/mv.h
index 35c4fe947..48c92f958 100644
--- a/vp8/common/mv.h
+++ b/vp8/common/mv.h
@@ -13,16 +13,14 @@
#define __INC_MV_H
#include "vpx/vpx_integer.h"
-typedef struct
-{
- short row;
- short col;
+typedef struct {
+ short row;
+ short col;
} MV;
-typedef union
-{
- uint32_t as_int;
- MV as_mv;
+typedef union {
+ uint32_t as_int;
+ MV as_mv;
} int_mv; /* facilitates faster equality tests and copies */
#endif