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
1c520605
Commit
1c520605
authored
May 14, 2014
by
Paul Wilkins
Committed by
Gerrit Code Review
May 14, 2014
Browse files
Merge "Clean up two unused parameters."
parents
200f9aed
7b4258da
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encoder.c
View file @
1c520605
...
...
@@ -1725,8 +1725,6 @@ static void output_frame_level_debug_stats(VP9_COMP *cpi) {
#endif
static
void
encode_without_recode_loop
(
VP9_COMP
*
cpi
,
size_t
*
size
,
uint8_t
*
dest
,
int
q
)
{
VP9_COMMON
*
const
cm
=
&
cpi
->
common
;
vp9_clear_system_state
();
...
...
@@ -2162,7 +2160,7 @@ static void encode_frame_to_data_rate(VP9_COMP *cpi,
}
if
(
cpi
->
sf
.
recode_loop
==
DISALLOW_RECODE
)
{
encode_without_recode_loop
(
cpi
,
size
,
dest
,
q
);
encode_without_recode_loop
(
cpi
,
q
);
}
else
{
encode_with_recode_loop
(
cpi
,
size
,
dest
,
q
,
bottom_index
,
top_index
);
}
...
...
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