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
a04ed23f
Commit
a04ed23f
authored
Jun 09, 2010
by
Paul Wilkins
Browse files
Adjust to avoid long line
parent
6702a404
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/firstpass.c
View file @
a04ed23f
...
...
@@ -1869,12 +1869,16 @@ void vp8_second_pass(VP8_COMP *cpi)
}
}
// Keep a globally available copy of this frames iiratio and the next.
cpi
->
this_iiratio
=
this_frame_intra_error
/
DOUBLE_DIVIDE_CHECK
(
this_frame_coded_error
);
// Keep a globally available copy of this and the next frame's iiratio.
cpi
->
this_iiratio
=
this_frame_intra_error
/
DOUBLE_DIVIDE_CHECK
(
this_frame_coded_error
);
{
FIRSTPASS_STATS
next_frame
;
if
(
lookup_next_frame_stats
(
cpi
,
&
next_frame
)
!=
EOF
)
cpi
->
next_iiratio
=
next_frame
.
intra_error
/
DOUBLE_DIVIDE_CHECK
(
next_frame
.
coded_error
);
{
cpi
->
next_iiratio
=
next_frame
.
intra_error
/
DOUBLE_DIVIDE_CHECK
(
next_frame
.
coded_error
);
}
}
// Set nominal per second bandwidth for this frame
...
...
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