Repack vp9_token_state.

Reduces size from 32 bytes to 24 bytes on x86_64.

Change-Id: I8a22552343a1fc916117f35267fe6a295250f742
This commit is contained in:
Alex Converse 2016-06-17 16:47:15 -07:00
parent aee577b691
commit 50d3629c61

View File

@ -50,11 +50,10 @@ void vp9_subtract_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) {
pd->dst.buf, pd->dst.stride);
}
// TODO(aconverse): Re-pack this structure.
typedef struct vp9_token_state {
int rate;
int64_t error;
int next;
int rate;
int16_t next;
int16_t token;
tran_low_t qc;
tran_low_t dqc;