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
c12e61d5
Commit
c12e61d5
authored
Jun 16, 2016
by
Yaowu Xu
Committed by
Gerrit Code Review
Jun 16, 2016
Browse files
Merge "Fix ubsan warning: vp8/encoder/denoising.c"
parents
f180945c
159dd0cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/denoising.c
View file @
c12e61d5
...
...
@@ -529,7 +529,7 @@ void vp8_denoiser_denoise_mb(VP8_DENOISER *denoiser,
// Bias on zero motion vector sse.
const
int
zero_bias
=
denoiser
->
denoise_pars
.
denoise_mv_bias
;
zero_mv_sse
=
(
unsigned
int
)((
int64_t
)
zero_mv_sse
*
zero_bias
/
100
);
sse_diff
=
zero_mv_sse
-
best_sse
;
sse_diff
=
(
int
)
zero_mv_sse
-
(
int
)
best_sse
;
saved_mbmi
=
*
mbmi
;
...
...
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