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
Guillaume Martres
aom-rav1e
Commits
1ced9764
Commit
1ced9764
authored
Mar 17, 2014
by
Yaowu Xu
Committed by
Gerrit Code Review
Mar 17, 2014
Browse files
Merge "Remove unused functions"
parents
65dc9191
04b7f14a
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
1ced9764
...
...
@@ -2660,14 +2660,6 @@ static void set_mode_info(MB_MODE_INFO *mbmi, BLOCK_SIZE bsize,
mbmi
->
segment_id
=
0
;
}
static
INLINE
int
get_block_row
(
int
b32i
,
int
b16i
,
int
b8i
)
{
return
((
b32i
>>
1
)
<<
2
)
+
((
b16i
>>
1
)
<<
1
)
+
(
b8i
>>
1
);
}
static
INLINE
int
get_block_col
(
int
b32i
,
int
b16i
,
int
b8i
)
{
return
((
b32i
&
1
)
<<
2
)
+
((
b16i
&
1
)
<<
1
)
+
(
b8i
&
1
);
}
static
void
nonrd_pick_sb_modes
(
VP9_COMP
*
cpi
,
const
TileInfo
*
const
tile
,
int
mi_row
,
int
mi_col
,
int
*
rate
,
int64_t
*
dist
,
...
...
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