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
a724477d
Commit
a724477d
authored
Jun 17, 2016
by
Johann Koenig
Committed by
Gerrit Code Review
Jun 17, 2016
Browse files
Merge "vp8: correct function return types"
parents
e9b61724
bd0c9817
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/common/findnearmv.h
View file @
a724477d
...
...
@@ -104,7 +104,7 @@ vp8_prob *vp8_mv_ref_probs(
extern
const
unsigned
char
vp8_mbsplit_offset
[
4
][
16
];
static
INLINE
int
left_block_mv
(
const
MODE_INFO
*
cur_mb
,
int
b
)
static
INLINE
u
int
32_t
left_block_mv
(
const
MODE_INFO
*
cur_mb
,
int
b
)
{
if
(
!
(
b
&
3
))
{
...
...
@@ -119,7 +119,8 @@ static INLINE int left_block_mv(const MODE_INFO *cur_mb, int b)
return
(
cur_mb
->
bmi
+
b
-
1
)
->
mv
.
as_int
;
}
static
INLINE
int
above_block_mv
(
const
MODE_INFO
*
cur_mb
,
int
b
,
int
mi_stride
)
static
INLINE
uint32_t
above_block_mv
(
const
MODE_INFO
*
cur_mb
,
int
b
,
int
mi_stride
)
{
if
(
!
(
b
>>
2
))
{
...
...
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