diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-07-22 03:33:29 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-07-22 03:33:29 +0000 |
commit | d229ae2b62d663ad2e9dcbfe1f20e0676b1eddee (patch) | |
tree | b977a25a3ab92e3bcc2f43bad3eee62c45f6bdbe /libavcodec | |
parent | d864dee8abc0a9f72210fe6a340b55d5f8de0684 (diff) | |
download | ffmpeg-d229ae2b62d663ad2e9dcbfe1f20e0676b1eddee.tar.gz |
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')
-rw-r--r-- | libavcodec/vp56.h | 4 |
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 { |