]> git.sesse.net Git - ffmpeg/commitdiff
Convert vp56_mv to 16-bit.
authorJason Garrett-Glaser <darkshikari@gmail.com>
Thu, 22 Jul 2010 03:33:29 +0000 (03:33 +0000)
committerJason Garrett-Glaser <darkshikari@gmail.com>
Thu, 22 Jul 2010 03:33:29 +0000 (03:33 +0000)
Saves nothing except a bit of memory/cache now, but will allow future
optimizations.

Originally committed as revision 24411 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/vp56.h

index 6bdea23fdfe4f308febdedfed7ed80b6382530bc..ce66c96de19a9acc115437a9b801018aed2970da 100644 (file)
@@ -62,8 +62,8 @@ typedef struct {
 } VP56RefDc;
 
 struct vp56_mv {
-    int x;
-    int y;
+    int16_t x;
+    int16_t y;
 };
 
 typedef struct {