shithub: libvpx

Download patch

ref: 7363e668d5e69a7cca8fb9f3b3ad80740d81fe02
parent: facecd80da372fa3364c51e9b34ff447ef1ae7b6
author: Dmitry Kovalev <dkovalev@google.com>
date: Wed Jul 17 13:02:44 EDT 2013

Removing unused int_mv32 union.

Change-Id: Ie692ed6e5fa1d2122e3a03573914d0fcce842f9e

--- a/vp9/common/vp9_mv.h
+++ b/vp9/common/vp9_mv.h
@@ -28,9 +28,4 @@
   int32_t col;
 } MV32;
 
-typedef union int_mv32 {
-  uint64_t as_int;
-  MV32 as_mv;
-} int_mv32; /* facilitates faster equality tests and copies */
-
 #endif  // VP9_COMMON_VP9_MV_H_
--