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
Xiph.Org
aom-rav1e
Commits
a13bf653
Commit
a13bf653
authored
Jun 29, 2014
by
Jim Bankoski
Browse files
remove unused parms from rd_pick_inter_mode_sb_seg_skip
Change-Id: I7f989d197444d166133ad91eb23ac1033109f58d
parent
b5906291
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
a13bf653
...
...
@@ -784,9 +784,8 @@ static void rd_pick_sb_modes(VP9_COMP *cpi, const TileInfo *const tile,
}
else
{
if
(
bsize
>=
BLOCK_8X8
)
{
if
(
vp9_segfeature_active
(
&
cm
->
seg
,
mbmi
->
segment_id
,
SEG_LVL_SKIP
))
vp9_rd_pick_inter_mode_sb_seg_skip
(
cpi
,
x
,
tile
,
mi_row
,
mi_col
,
totalrate
,
totaldist
,
bsize
,
ctx
,
best_rd
);
vp9_rd_pick_inter_mode_sb_seg_skip
(
cpi
,
x
,
totalrate
,
totaldist
,
bsize
,
ctx
,
best_rd
);
else
vp9_rd_pick_inter_mode_sb
(
cpi
,
x
,
tile
,
mi_row
,
mi_col
,
totalrate
,
totaldist
,
bsize
,
ctx
,
best_rd
);
...
...
vp9/encoder/vp9_rdopt.c
View file @
a13bf653
...
...
@@ -3551,8 +3551,6 @@ int64_t vp9_rd_pick_inter_mode_sb(VP9_COMP *cpi, MACROBLOCK *x,
}
int64_t
vp9_rd_pick_inter_mode_sb_seg_skip
(
VP9_COMP
*
cpi
,
MACROBLOCK
*
x
,
const
TileInfo
*
const
tile
,
int
mi_row
,
int
mi_col
,
int
*
returnrate
,
int64_t
*
returndistortion
,
BLOCK_SIZE
bsize
,
...
...
vp9/encoder/vp9_rdopt.h
View file @
a13bf653
...
...
@@ -157,8 +157,6 @@ int64_t vp9_rd_pick_inter_mode_sb(struct VP9_COMP *cpi, struct macroblock *x,
int64_t
vp9_rd_pick_inter_mode_sb_seg_skip
(
struct
VP9_COMP
*
cpi
,
struct
macroblock
*
x
,
const
TileInfo
*
const
tile
,
int
mi_row
,
int
mi_col
,
int
*
returnrate
,
int64_t
*
returndistortion
,
BLOCK_SIZE
bsize
,
...
...
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