[FFmpeg-cvslog] r24411 - trunk/libavcodec/vp56.h

darkshikari subversion
Thu Jul 22 05:33:30 CEST 2010


Author: darkshikari
Date: Thu Jul 22 05:33:29 2010
New Revision: 24411

Log:
Convert vp56_mv to 16-bit.
Saves nothing except a bit of memory/cache now, but will allow future 
optimizations.

Modified:
   trunk/libavcodec/vp56.h

Modified: trunk/libavcodec/vp56.h
==============================================================================
--- trunk/libavcodec/vp56.h	Thu Jul 22 05:09:10 2010	(r24410)
+++ trunk/libavcodec/vp56.h	Thu Jul 22 05:33:29 2010	(r24411)
@@ -62,8 +62,8 @@ typedef struct {
 } VP56RefDc;
 
 struct vp56_mv {
-    int x;
-    int y;
+    int16_t x;
+    int16_t y;
 };
 
 typedef struct {



More information about the ffmpeg-cvslog mailing list