Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
29373eef
Commit
29373eef
authored
Oct 19, 2017
by
Yaowu Xu
Committed by
James Zern
Oct 20, 2017
Browse files
Squash type conversion warnings in MSVC
Change-Id: I457edba98dd1ebbd212651247d6c0d1a34f780d6
parent
1fa24467
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/rdopt.c
View file @
29373eef
...
...
@@ -1206,8 +1206,8 @@ static void get_energy_distribution_finer(const int16_t *diff, int stride,
// row/column, when computing horizontal/vertical correlation.
static void get_horver_correlation_full(const int16_t *diff, int stride, int w,
int h, float *hcorr, float *vcorr) {
const float num_hor = h * (w - 1);
const float num_ver = (h - 1) * w;
const float num_hor =
(float)(
h * (w - 1)
)
;
const float num_ver =
(float)(
(h - 1) * w
)
;
int i, j;
// The following notation is used:
...
...
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