Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
8d558f2c
Commit
8d558f2c
authored
Dec 15, 2014
by
James Zern
Committed by
Gerrit Code Review
Dec 15, 2014
Browse files
Merge "vp9/MACROBLOCKD: reorder struct members"
parents
91471d6a
c58c579e
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_blockd.h
View file @
8d558f2c
...
...
@@ -212,6 +212,12 @@ typedef struct macroblockd {
/* pointer to current frame */
const
YV12_BUFFER_CONFIG
*
cur_buf
;
ENTROPY_CONTEXT
*
above_context
[
MAX_MB_PLANE
];
ENTROPY_CONTEXT
left_context
[
MAX_MB_PLANE
][
16
];
PARTITION_CONTEXT
*
above_seg_context
;
PARTITION_CONTEXT
left_seg_context
[
8
];
/* mc buffer */
DECLARE_ALIGNED
(
16
,
uint8_t
,
mc_buf
[
80
*
2
*
80
*
2
]);
...
...
@@ -221,17 +227,10 @@ typedef struct macroblockd {
DECLARE_ALIGNED
(
16
,
uint16_t
,
mc_buf_high
[
80
*
2
*
80
*
2
]);
#endif
int
lossless
;
int
corrupted
;
DECLARE_ALIGNED
(
16
,
tran_low_t
,
dqcoeff
[
MAX_MB_PLANE
][
64
*
64
]);
ENTROPY_CONTEXT
*
above_context
[
MAX_MB_PLANE
];
ENTROPY_CONTEXT
left_context
[
MAX_MB_PLANE
][
16
];
PARTITION_CONTEXT
*
above_seg_context
;
PARTITION_CONTEXT
left_seg_context
[
8
];
int
lossless
;
int
corrupted
;
}
MACROBLOCKD
;
static
INLINE
BLOCK_SIZE
get_subsize
(
BLOCK_SIZE
bsize
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment