Skip to content
GitLab
Menu
Projects
Groups
Snippets
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
3393243d
Commit
3393243d
authored
Jun 25, 2015
by
James Zern
Committed by
Gerrit Code Review
Jun 25, 2015
Browse files
Merge "vp8_subpixelvariance_neon: right size coeff table"
parents
3dd9cde2
4bd87a9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/common/arm/neon/vp8_subpixelvariance_neon.c
View file @
3393243d
...
...
@@ -12,7 +12,7 @@
#include "vpx_ports/mem.h"
#include "vpx/vpx_integer.h"
static
const
uint
16
_t
bilinear_taps_coeff
[
8
][
2
]
=
{
static
const
uint
8
_t
bilinear_taps_coeff
[
8
][
2
]
=
{
{
128
,
0
},
{
112
,
16
},
{
96
,
32
},
...
...
@@ -972,9 +972,9 @@ static void var_filter_block2d_bil_w8(const uint8_t *src_ptr,
int
pixel_step
,
unsigned
int
output_height
,
unsigned
int
output_width
,
const
uint
16
_t
*
vpx_filter
)
{
const
uint8x8_t
f0
=
vmov_n_u8
(
(
uint8_t
)
vpx_filter
[
0
]);
const
uint8x8_t
f1
=
vmov_n_u8
(
(
uint8_t
)
vpx_filter
[
1
]);
const
uint
8
_t
*
vpx_filter
)
{
const
uint8x8_t
f0
=
vmov_n_u8
(
vpx_filter
[
0
]);
const
uint8x8_t
f1
=
vmov_n_u8
(
vpx_filter
[
1
]);
unsigned
int
i
;
for
(
i
=
0
;
i
<
output_height
;
++
i
)
{
const
uint8x8_t
src_0
=
vld1_u8
(
&
src_ptr
[
0
]);
...
...
Write
Preview
Supports
Markdown
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