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
6d2307b2
Commit
6d2307b2
authored
Jan 24, 2014
by
Yaowu Xu
Committed by
Gerrit Code Review
Jan 24, 2014
Browse files
Merge "Fixed integer overflow for large input video"
parents
d79b0706
e5034f65
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_firstpass.c
View file @
6d2307b2
...
...
@@ -471,7 +471,7 @@ void vp9_first_pass(VP9_COMP *cpi) {
int
sum_mvr
=
0
,
sum_mvc
=
0
;
int
sum_mvr_abs
=
0
,
sum_mvc_abs
=
0
;
int
sum_mvrs
=
0
,
sum_mvcs
=
0
;
int
64_t
sum_mvrs
=
0
,
sum_mvcs
=
0
;
int
mvcount
=
0
;
int
intercount
=
0
;
int
second_ref_count
=
0
;
...
...
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