Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
34ad6d00
Commit
34ad6d00
authored
Mar 03, 2014
by
Paul Wilkins
Committed by
Gerrit Code Review
Mar 03, 2014
Browse files
Merge "Clear implied conversion to int64_t warning."
parents
cf123f40
74558bc5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp9/encoder/vp9_pickmode.c
vp9/encoder/vp9_pickmode.c
+1
-1
No files found.
vp9/encoder/vp9_pickmode.c
View file @
34ad6d00
...
...
@@ -261,7 +261,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
continue
;
if
(
this_mode
==
NEWMV
)
{
if
(
this_rd
<
(
1
<<
num_pels_log2_lookup
[
bsize
]))
if
(
this_rd
<
(
int64_t
)
(
1
<<
num_pels_log2_lookup
[
bsize
]))
continue
;
x
->
mode_sad
[
ref_frame
][
INTER_OFFSET
(
NEWMV
)]
=
...
...
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