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
9e0b5abc
Commit
9e0b5abc
authored
May 13, 2014
by
Adrian Grange
Committed by
Gerrit Code Review
May 13, 2014
Browse files
Merge "Move frame stats output to after update"
parents
38f3cf12
8d2fff7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encoder.c
View file @
9e0b5abc
...
...
@@ -2236,9 +2236,6 @@ static void encode_frame_to_data_rate(VP9_COMP *cpi,
}
}
#if 0
output_frame_level_debug_stats(cpi);
#endif
if
(
cpi
->
refresh_golden_frame
==
1
)
cpi
->
frame_flags
|=
FRAMEFLAGS_GOLDEN
;
else
...
...
@@ -2254,6 +2251,10 @@ static void encode_frame_to_data_rate(VP9_COMP *cpi,
cm
->
last_frame_type
=
cm
->
frame_type
;
vp9_rc_postencode_update
(
cpi
,
*
size
);
#if 0
output_frame_level_debug_stats(cpi);
#endif
if
(
cm
->
frame_type
==
KEY_FRAME
)
{
// Tell the caller that the frame was coded as a key frame
*
frame_flags
=
cpi
->
frame_flags
|
FRAMEFLAGS_KEY
;
...
...
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