Commit d229ae2b authored by Jason Garrett-Glaser's avatar Jason Garrett-Glaser

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
parent d864dee8
......@@ -62,8 +62,8 @@ typedef struct {
} VP56RefDc;
struct vp56_mv {
int x;
int y;
int16_t x;
int16_t y;
};
typedef struct {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment