comparison vp56.h @ 12216:160eceee6c3d libavcodec

Convert vp56_mv to 16-bit. Saves nothing except a bit of memory/cache now, but will allow future optimizations.
author darkshikari
date Thu, 22 Jul 2010 03:33:29 +0000
parents 5a794f3f0d75
children f6b229456bdf
comparison
equal deleted inserted replaced
12215:58d828f9810f 12216:160eceee6c3d
60 VP56Frame ref_frame; 60 VP56Frame ref_frame;
61 DCTELEM dc_coeff; 61 DCTELEM dc_coeff;
62 } VP56RefDc; 62 } VP56RefDc;
63 63
64 struct vp56_mv { 64 struct vp56_mv {
65 int x; 65 int16_t x;
66 int y; 66 int16_t y;
67 }; 67 };
68 68
69 typedef struct { 69 typedef struct {
70 uint8_t type; 70 uint8_t type;
71 VP56mv mv; 71 VP56mv mv;