Commit baaa8578 authored by michael's avatar michael

reduce size of Vp3Fragment from 32byte to 16byte


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4270 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8aa0f0a8
......@@ -136,16 +136,16 @@ static inline void debug_idct(const char *format, ...) { }
typedef struct Vp3Fragment {
DCTELEM *coeffs;
int coding_method;
int coeff_count;
int last_coeff;
int motion_x;
int motion_y;
/* address of first pixel taking into account which plane the fragment
* lives on as well as the plane stride */
int first_pixel;
/* this is the macroblock that the fragment belongs to */
int macroblock;
uint16_t macroblock;
uint8_t coding_method;
uint8_t coeff_count;
int8_t last_coeff;
int8_t motion_x;
int8_t motion_y;
} Vp3Fragment;
#define SB_NOT_CODED 0
......
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