Skip to content
GitLab
Menu
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
3183135d
Commit
3183135d
authored
Nov 25, 2013
by
Yaowu Xu
Committed by
Gerrit Code Review
Nov 25, 2013
Browse files
Merge "Fix a build issue with visual c."
parents
0c54beb1
86368fac
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_findnearmv.c
View file @
3183135d
...
...
@@ -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
.
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