Skip to content
GitLab
Menu
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
b9c33d93
Commit
b9c33d93
authored
Apr 27, 2017
by
Debargha Mukherjee
Browse files
Fix a test failure in ext-inter experiment
Change-Id: I1902b916c7a63d70c0d297989750ec3e230678eb
parent
266db85d
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/bitstream.c
View file @
b9c33d93
...
...
@@ -126,7 +126,9 @@ static struct av1_token intra_filter_encodings[INTRA_FILTERS];
#endif // CONFIG_EXT_INTRA
#if CONFIG_EXT_INTER
static
struct
av1_token
interintra_mode_encodings
[
INTERINTRA_MODES
];
#if CONFIG_COMPOUND_SEGMENT || CONFIG_WEDGE
static
struct
av1_token
compound_type_encodings
[
COMPOUND_TYPES
];
#endif // CONFIG_COMPOUND_SEGMENT || CONFIG_WEDGE
#endif // CONFIG_EXT_INTER
#if CONFIG_MOTION_VAR || CONFIG_WARPED_MOTION
static
struct
av1_token
motion_mode_encodings
[
MOTION_MODES
];
...
...
@@ -177,7 +179,9 @@ void av1_encode_token_init(void) {
#endif // CONFIG_EXT_INTRA && CONFIG_INTRA_INTERP
#if CONFIG_EXT_INTER
av1_tokens_from_tree
(
interintra_mode_encodings
,
av1_interintra_mode_tree
);
#if CONFIG_COMPOUND_SEGMENT || CONFIG_WEDGE
av1_tokens_from_tree
(
compound_type_encodings
,
av1_compound_type_tree
);
#endif // CONFIG_COMPOUND_SEGMENT || CONFIG_WEDGE
#endif // CONFIG_EXT_INTER
#if CONFIG_MOTION_VAR || CONFIG_WARPED_MOTION
av1_tokens_from_tree
(
motion_mode_encodings
,
av1_motion_mode_tree
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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