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
c01e86cc
Commit
c01e86cc
authored
Apr 10, 2014
by
Dmitry Kovalev
Committed by
Gerrit Code Review
Apr 10, 2014
Browse files
Merge "Removing output_framerate field from VP9_COMP."
parents
8e4d5e41
4d2523bf
Changes
3
Show whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_firstpass.c
View file @
c01e86cc
...
...
@@ -981,8 +981,6 @@ void vp9_init_second_pass(VP9_COMP *cpi) {
oxcf
->
target_bandwidth
/
10000000
.
0
);
}
cpi
->
output_framerate
=
oxcf
->
framerate
;
// Calculate a minimum intra value to be used in determining the IIratio
// scores used in the second pass. We have this minimum to make sure
// that clips that are static but "low complexity" in the intra domain
...
...
vp9/encoder/vp9_onyx_if.c
View file @
c01e86cc
...
...
@@ -633,9 +633,8 @@ void vp9_new_framerate(VP9_COMP *cpi, double framerate) {
int
vbr_max_bits
;
oxcf
->
framerate
=
framerate
<
0
.
1
?
30
:
framerate
;
cpi
->
output_framerate
=
cpi
->
oxcf
.
framerate
;
rc
->
av_per_frame_bandwidth
=
(
int
)(
oxcf
->
target_bandwidth
/
cpi
->
output_
framerate
);
oxcf
->
framerate
);
rc
->
min_frame_bandwidth
=
(
int
)(
rc
->
av_per_frame_bandwidth
*
oxcf
->
two_pass_vbrmin_section
/
100
);
...
...
vp9/encoder/vp9_onyx_int.h
View file @
c01e86cc
...
...
@@ -376,7 +376,6 @@ typedef struct VP9_COMP {
int
active_arnr_frames
;
// <= cpi->oxcf.arnr_max_frames
int
active_arnr_strength
;
// <= cpi->oxcf.arnr_max_strength
double
output_framerate
;
int64_t
last_time_stamp_seen
;
int64_t
last_end_time_stamp_seen
;
int64_t
first_time_stamp_ever
;
...
...
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