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
dc8a2c52
Commit
dc8a2c52
authored
Oct 19, 2016
by
Yaowu Xu
Committed by
Gerrit Code Review
Oct 19, 2016
Browse files
Merge "Always send frame size explicitly" into nextgenv2
parents
0a3284cb
842e9b03
Changes
3
Hide whitespace changes
Inline
Side-by-side
av1/decoder/decodeframe.c
View file @
dc8a2c52
...
...
@@ -3370,7 +3370,15 @@ static size_t read_uncompressed_header(AV1Decoder *pbi,
cm
->
ref_frame_sign_bias
[
LAST_FRAME
+
i
]
=
aom_rb_read_bit
(
rb
);
}
#if CONFIG_FRAME_SIZE
if
(
cm
->
error_resilient_mode
==
0
)
{
setup_frame_size_with_refs
(
cm
,
rb
);
}
else
{
setup_frame_size
(
cm
,
rb
);
}
#else
setup_frame_size_with_refs
(
cm
,
rb
);
#endif
cm
->
allow_high_precision_mv
=
aom_rb_read_bit
(
rb
);
cm
->
interp_filter
=
read_interp_filter
(
rb
);
...
...
av1/encoder/bitstream.c
View file @
dc8a2c52
...
...
@@ -3292,7 +3292,15 @@ static void write_uncompressed_header(AV1_COMP *cpi,
aom_wb_write_bit
(
wb
,
cm
->
ref_frame_sign_bias
[
ref_frame
]);
}
#if CONFIG_FRAME_SIZE
if
(
cm
->
error_resilient_mode
==
0
)
{
write_frame_size_with_refs
(
cpi
,
wb
);
}
else
{
write_frame_size
(
cm
,
wb
);
}
#else
write_frame_size_with_refs
(
cpi
,
wb
);
#endif
aom_wb_write_bit
(
wb
,
cm
->
allow_high_precision_mv
);
...
...
configure
View file @
dc8a2c52
...
...
@@ -284,6 +284,7 @@ EXPERIMENT_LIST="
palette
daala_ec
cb4x4
frame_size
"
CONFIG_LIST
=
"
dependency_tracking
...
...
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