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
86368fac
Commit
86368fac
authored
Nov 25, 2013
by
Yaowu Xu
Browse files
Fix a build issue with visual c.
Change-Id: Ic8fc16ee1734cfde0d12a2e3abb3e9299382f3b1
parent
2d50c849
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_findnearmv.c
View file @
86368fac
...
...
@@ -63,10 +63,12 @@ void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd,
break
;
}
}
else
{
int_mv
candidates
[
2
+
MAX_MV_REF_CANDIDATES
]
=
{
bmi
[
1
].
as_mv
[
ref_idx
],
bmi
[
0
].
as_mv
[
ref_idx
],
mv_list
[
0
],
mv_list
[
1
]
};
int_mv
candidates
[
2
+
MAX_MV_REF_CANDIDATES
];
candidates
[
0
]
=
bmi
[
1
].
as_mv
[
ref_idx
];
candidates
[
1
]
=
bmi
[
0
].
as_mv
[
ref_idx
];
candidates
[
2
]
=
mv_list
[
0
];
candidates
[
3
]
=
mv_list
[
1
];
assert
(
block_idx
==
3
);
dst_nearest
->
as_int
=
bmi
[
2
].
as_mv
[
ref_idx
].
as_int
;
for
(
n
=
0
;
n
<
2
+
MAX_MV_REF_CANDIDATES
;
++
n
)
{
...
...
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