summaryrefslogtreecommitdiff
path: root/libavcodec/vp56.h
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-07-22 03:33:29 +0000
committerJason Garrett-Glaser <darkshikari@gmail.com>2010-07-22 03:33:29 +0000
commitd229ae2b62d663ad2e9dcbfe1f20e0676b1eddee (patch)
treeb977a25a3ab92e3bcc2f43bad3eee62c45f6bdbe /libavcodec/vp56.h
parentd864dee8abc0a9f72210fe6a340b55d5f8de0684 (diff)
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
Diffstat (limited to 'libavcodec/vp56.h')
-rw-r--r--libavcodec/vp56.h4
1 files changed, 2 insertions, 2 deletions
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 {