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
54040f94
Commit
54040f94
authored
Dec 09, 2013
by
Jingning Han
Committed by
Gerrit Code Review
Dec 09, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Clean-ups in diamond_search_sad"
parents
f92b5842
44627a96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
vp9/encoder/vp9_mcomp.c
vp9/encoder/vp9_mcomp.c
+2
-3
No files found.
vp9/encoder/vp9_mcomp.c
View file @
54040f94
...
...
@@ -1231,7 +1231,7 @@ int vp9_diamond_search_sad_c(MACROBLOCK *x,
// Work out the start point for the search
in_what
=
(
uint8_t
*
)(
xd
->
plane
[
0
].
pre
[
0
].
buf
+
(
ref_row
*
(
xd
->
plane
[
0
].
pre
[
0
].
stride
))
+
ref_col
);
ref_row
*
in_what_stride
+
ref_col
);
best_address
=
in_what
;
// Check the starting position
...
...
@@ -1375,7 +1375,7 @@ int vp9_diamond_search_sadx4(MACROBLOCK *x,
// Work out the start point for the search
in_what
=
(
uint8_t
*
)(
xd
->
plane
[
0
].
pre
[
0
].
buf
+
(
ref_row
*
(
xd
->
plane
[
0
].
pre
[
0
].
stride
))
+
ref_col
);
ref_row
*
in_what_stride
+
ref_col
);
best_address
=
in_what
;
// Check the starting position
...
...
@@ -1522,7 +1522,6 @@ int vp9_full_pixel_diamond(VP9_COMP *cpi, MACROBLOCK *x,
int_mv
*
ref_mv
,
int_mv
*
dst_mv
)
{
int_mv
temp_mv
;
int
thissme
,
n
,
num00
;
int
bestsme
=
cpi
->
diamond_search_sad
(
x
,
mvp_full
,
&
temp_mv
,
step_param
,
sadpb
,
&
num00
,
fn_ptr
,
x
->
nmvjointcost
,
...
...
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