From d229ae2b62d663ad2e9dcbfe1f20e0676b1eddee Mon Sep 17 00:00:00 2001 From: Jason Garrett-Glaser Date: Thu, 22 Jul 2010 03:33:29 +0000 Subject: Convert vp56_mv to 16-bit. 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/vp56.h') diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 6bdea23fdf..ce66c96de1 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -62,8 +62,8 @@ typedef struct { } VP56RefDc; struct vp56_mv { - int x; - int y; + int16_t x; + int16_t y; }; typedef struct { -- cgit v1.2.3