Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
fc43938d
Commit
fc43938d
authored
Jan 14, 2014
by
Deb Mukherjee
Committed by
Gerrit Code Review
Jan 14, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Minor fix on an assert"
parents
903ba1a1
1699d6bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vp9/encoder/vp9_onyx_if.c
vp9/encoder/vp9_onyx_if.c
+1
-1
vp9/encoder/vp9_ratectrl.c
vp9/encoder/vp9_ratectrl.c
+1
-1
No files found.
vp9/encoder/vp9_onyx_if.c
View file @
fc43938d
...
@@ -3420,7 +3420,7 @@ int vp9_get_compressed_data(VP9_PTR ptr, unsigned int *frame_flags,
...
@@ -3420,7 +3420,7 @@ int vp9_get_compressed_data(VP9_PTR ptr, unsigned int *frame_flags,
#endif
#endif
frames_to_arf
=
cpi
->
rc
.
frames_till_gf_update_due
;
frames_to_arf
=
cpi
->
rc
.
frames_till_gf_update_due
;
assert
(
frames_to_arf
<
cpi
->
rc
.
frames_to_key
);
assert
(
frames_to_arf
<
=
cpi
->
rc
.
frames_to_key
);
if
((
cpi
->
source
=
vp9_lookahead_peek
(
cpi
->
lookahead
,
frames_to_arf
)))
{
if
((
cpi
->
source
=
vp9_lookahead_peek
(
cpi
->
lookahead
,
frames_to_arf
)))
{
#if CONFIG_MULTIPLE_ARF
#if CONFIG_MULTIPLE_ARF
...
...
vp9/encoder/vp9_ratectrl.c
View file @
fc43938d
...
@@ -965,5 +965,5 @@ void vp9_rc_postencode_update(VP9_COMP *cpi, uint64_t bytes_used) {
...
@@ -965,5 +965,5 @@ void vp9_rc_postencode_update(VP9_COMP *cpi, uint64_t bytes_used) {
void
vp9_rc_postencode_update_drop_frame
(
VP9_COMP
*
cpi
)
{
void
vp9_rc_postencode_update_drop_frame
(
VP9_COMP
*
cpi
)
{
cpi
->
rc
.
frames_since_key
++
;
cpi
->
rc
.
frames_since_key
++
;
//
cpi->rc.frames_to_key--;
cpi
->
rc
.
frames_to_key
--
;
}
}
Write
Preview
Markdown
is supported
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