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
Guillaume Martres
aom-rav1e
Commits
3e81ee26
Commit
3e81ee26
authored
May 12, 2014
by
Yaowu Xu
Browse files
vp9_pickmode.c: Removed unused function parameters
Change-Id: I4ec07d3935dc56ca16ea4ba1e5730b09f1bf1f21
parent
26cb7bee
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
3e81ee26
...
...
@@ -27,7 +27,6 @@
#include
"vp9/encoder/vp9_rdopt.h"
static
void
full_pixel_motion_search
(
VP9_COMP
*
cpi
,
MACROBLOCK
*
x
,
const
TileInfo
*
const
tile
,
BLOCK_SIZE
bsize
,
int
mi_row
,
int
mi_col
,
int_mv
*
tmp_mv
,
int
*
rate_mv
)
{
MACROBLOCKD
*
xd
=
&
x
->
e_mbd
;
...
...
@@ -107,7 +106,6 @@ static void full_pixel_motion_search(VP9_COMP *cpi, MACROBLOCK *x,
}
static
void
sub_pixel_motion_search
(
VP9_COMP
*
cpi
,
MACROBLOCK
*
x
,
const
TileInfo
*
const
tile
,
BLOCK_SIZE
bsize
,
int
mi_row
,
int
mi_col
,
MV
*
tmp_mv
)
{
MACROBLOCKD
*
xd
=
&
x
->
e_mbd
;
...
...
@@ -290,7 +288,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
if
(
this_rd
<
(
int64_t
)(
1
<<
num_pels_log2_lookup
[
bsize
]))
continue
;
full_pixel_motion_search
(
cpi
,
x
,
tile
,
bsize
,
mi_row
,
mi_col
,
full_pixel_motion_search
(
cpi
,
x
,
bsize
,
mi_row
,
mi_col
,
&
frame_mv
[
NEWMV
][
ref_frame
],
&
rate_mv
);
if
(
frame_mv
[
NEWMV
][
ref_frame
].
as_int
==
INVALID_MV
)
...
...
@@ -301,7 +299,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
if
(
RDCOST
(
x
->
rdmult
,
x
->
rddiv
,
rate_mv
+
rate_mode
,
0
)
>
best_rd
)
continue
;
sub_pixel_motion_search
(
cpi
,
x
,
tile
,
bsize
,
mi_row
,
mi_col
,
sub_pixel_motion_search
(
cpi
,
x
,
bsize
,
mi_row
,
mi_col
,
&
frame_mv
[
NEWMV
][
ref_frame
].
as_mv
);
}
...
...
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