Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
a75d55df
Commit
a75d55df
authored
Jul 11, 2014
by
Yaowu Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove an unused parameter
Change-Id: I6ad6fd75dc3c9e6218d88148cf49e205398e2af5
parent
8a7cc1f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vp9/common/vp9_reconinter.c
vp9/common/vp9_reconinter.c
+3
-3
No files found.
vp9/common/vp9_reconinter.c
View file @
a75d55df
...
...
@@ -151,7 +151,7 @@ MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv,
return
clamped_mv
;
}
static
MV
average_split_mvs
(
const
struct
macroblockd_plane
*
pd
,
int
plane
,
static
MV
average_split_mvs
(
const
struct
macroblockd_plane
*
pd
,
const
MODE_INFO
*
mi
,
int
ref
,
int
block
)
{
const
int
ss_idx
=
((
pd
->
subsampling_x
>
0
)
<<
1
)
|
(
pd
->
subsampling_y
>
0
);
MV
res
=
{
0
,
0
};
...
...
@@ -190,7 +190,7 @@ static void build_inter_predictors(MACROBLOCKD *xd, int plane, int block,
struct
buf_2d
*
const
dst_buf
=
&
pd
->
dst
;
uint8_t
*
const
dst
=
dst_buf
->
buf
+
dst_buf
->
stride
*
y
+
x
;
const
MV
mv
=
mi
->
mbmi
.
sb_type
<
BLOCK_8X8
?
average_split_mvs
(
pd
,
plane
,
mi
,
ref
,
block
)
?
average_split_mvs
(
pd
,
mi
,
ref
,
block
)
:
mi
->
mbmi
.
mv
[
ref
].
as_mv
;
// TODO(jkoleszar): This clamping is done in the incorrect place for the
...
...
@@ -288,7 +288,7 @@ static void dec_build_inter_predictors(MACROBLOCKD *xd, int plane, int block,
struct
buf_2d
*
const
dst_buf
=
&
pd
->
dst
;
uint8_t
*
const
dst
=
dst_buf
->
buf
+
dst_buf
->
stride
*
y
+
x
;
const
MV
mv
=
mi
->
mbmi
.
sb_type
<
BLOCK_8X8
?
average_split_mvs
(
pd
,
plane
,
mi
,
ref
,
block
)
?
average_split_mvs
(
pd
,
mi
,
ref
,
block
)
:
mi
->
mbmi
.
mv
[
ref
].
as_mv
;
...
...
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