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
9fdd90c9
Commit
9fdd90c9
authored
Oct 26, 2010
by
John Koleszar
Committed by
Code Review
Oct 26, 2010
Browse files
Merge "arm: remove duplicate functions"
parents
91d927f9
d330a587
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
vp8/common/arm/reconintra4x4_arm.c
View file @
9fdd90c9
...
...
@@ -295,22 +295,8 @@ void vp8_predict_intra4x4(BLOCKD *x,
}
}
// copy 4 bytes from the above right down so that the 4x4 prediction modes using pixels above and
// to the right prediction have filled in pixels to use.
void
vp8_intra_prediction_down_copy
(
MACROBLOCKD
*
x
)
{
unsigned
char
*
above_right
=
*
(
x
->
block
[
0
].
base_dst
)
+
x
->
block
[
0
].
dst
-
x
->
block
[
0
].
dst_stride
+
16
;
unsigned
int
*
src_ptr
=
(
unsigned
int
*
)
above_right
;
unsigned
int
*
dst_ptr0
=
(
unsigned
int
*
)(
above_right
+
4
*
x
->
block
[
0
].
dst_stride
);
unsigned
int
*
dst_ptr1
=
(
unsigned
int
*
)(
above_right
+
8
*
x
->
block
[
0
].
dst_stride
);
unsigned
int
*
dst_ptr2
=
(
unsigned
int
*
)(
above_right
+
12
*
x
->
block
[
0
].
dst_stride
);
*
dst_ptr0
=
*
src_ptr
;
*
dst_ptr1
=
*
src_ptr
;
*
dst_ptr2
=
*
src_ptr
;
}
extern
void
vp8_intra_prediction_down_copy
(
MACROBLOCKD
*
x
);
/*
...
...
vp8/encoder/arm/mcomp_arm.c
View file @
9fdd90c9
This diff is collapsed.
Click to expand it.
vp8/encoder/mcomp.c
View file @
9fdd90c9
...
...
@@ -1127,6 +1127,7 @@ int vp8_diamond_search_sadx4
}
#if !(CONFIG_REALTIME_ONLY)
int
vp8_full_search_sad
(
MACROBLOCK
*
x
,
BLOCK
*
b
,
BLOCKD
*
d
,
MV
*
ref_mv
,
int
error_per_bit
,
int
distance
,
vp8_variance_fn_ptr_t
*
fn_ptr
,
int
*
mvcost
[
2
],
int
*
mvsadcost
[
2
])
{
unsigned
char
*
what
=
(
*
(
b
->
base_src
)
+
b
->
src
);
...
...
@@ -1339,6 +1340,8 @@ int vp8_full_search_sadx3(MACROBLOCK *x, BLOCK *b, BLOCKD *d, MV *ref_mv, int er
else
return
INT_MAX
;
}
#endif
#ifdef ENTROPY_STATS
void
print_mode_context
(
void
)
...
...
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