[FFmpeg-devel] [PATCH 1/5] Shrink the size of vp56_mv
David Conrad
lessen42
Tue Jun 15 15:02:14 CEST 2010
---
libavcodec/vp56.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h
index 89eba05..3d98b9e 100644
--- a/libavcodec/vp56.h
+++ b/libavcodec/vp56.h
@@ -60,8 +60,8 @@ typedef struct {
} VP56RefDc;
struct vp56_mv {
- int x;
- int y;
+ int16_t x;
+ int16_t y;
};
typedef struct {
--
1.7.1
More information about the ffmpeg-devel
mailing list