changeset 12216:160eceee6c3d libavcodec

Convert vp56_mv to 16-bit. Saves nothing except a bit of memory/cache now, but will allow future optimizations.
author darkshikari
date Thu, 22 Jul 2010 03:33:29 +0000
parents 58d828f9810f
children f6b229456bdf
files vp56.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/vp56.h	Thu Jul 22 03:09:10 2010 +0000
+++ b/vp56.h	Thu Jul 22 03:33:29 2010 +0000
@@ -62,8 +62,8 @@
 } VP56RefDc;
 
 struct vp56_mv {
-    int x;
-    int y;
+    int16_t x;
+    int16_t y;
 };
 
 typedef struct {