Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
9ca66ec0
Commit
9ca66ec0
authored
11 years ago
by
Johann
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "vp9_convolve8_neon placeholder"
parents
83c7e13a
59dc4e9c
v1.14.0-linphone
1.4.X
experimental
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
forest
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m31-baseline
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
mcw
mcw2
nextgen
nextgenv2
pcs-2013
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/debargha/playground
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
stable-vp9-decoder
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
v1.3.0
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
test/convolve_test.cc
+1
-1
test/convolve_test.cc
vp9/common/arm/neon/vp9_convolve_neon.c
+77
-0
vp9/common/arm/neon/vp9_convolve_neon.c
vp9/common/vp9_rtcd_defs.sh
+2
-2
vp9/common/vp9_rtcd_defs.sh
vp9/vp9_common.mk
+1
-0
vp9/vp9_common.mk
with
81 additions
and
3 deletions
test/convolve_test.cc
+
1
−
1
View file @
9ca66ec0
...
@@ -551,7 +551,7 @@ INSTANTIATE_TEST_CASE_P(SSSE3, ConvolveTest, ::testing::Values(
...
@@ -551,7 +551,7 @@ INSTANTIATE_TEST_CASE_P(SSSE3, ConvolveTest, ::testing::Values(
const
ConvolveFunctions
convolve8_neon
(
const
ConvolveFunctions
convolve8_neon
(
vp9_convolve8_horiz_neon
,
vp9_convolve8_avg_horiz_neon
,
vp9_convolve8_horiz_neon
,
vp9_convolve8_avg_horiz_neon
,
vp9_convolve8_vert_neon
,
vp9_convolve8_avg_vert_neon
,
vp9_convolve8_vert_neon
,
vp9_convolve8_avg_vert_neon
,
vp9_convolve8_
c
,
vp9_convolve8_avg_
c
);
vp9_convolve8_
neon
,
vp9_convolve8_avg_
neon
);
INSTANTIATE_TEST_CASE_P
(
NEON
,
ConvolveTest
,
::
testing
::
Values
(
INSTANTIATE_TEST_CASE_P
(
NEON
,
ConvolveTest
,
::
testing
::
Values
(
make_tuple
(
4
,
4
,
&
convolve8_neon
),
make_tuple
(
4
,
4
,
&
convolve8_neon
),
...
...
This diff is collapsed.
Click to expand it.
vp9/common/arm/neon/vp9_convolve_neon.c
0 → 100644
+
77
−
0
View file @
9ca66ec0
/*
* Copyright (c) 2013 The WebM project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include
"./vp9_rtcd.h"
#include
"vp9/common/vp9_common.h"
void
vp9_convolve8_neon
(
const
uint8_t
*
src
,
ptrdiff_t
src_stride
,
uint8_t
*
dst
,
ptrdiff_t
dst_stride
,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
)
{
/* Given our constraints: w <= 64, h <= 64, taps == 8 we can reduce the
* maximum buffer size to 64 * 64 + 7 (+ 1 to make it divisible by 4).
*/
uint8_t
temp
[
64
*
72
];
// Account for the vertical phase needing 3 lines prior and 4 lines post
int
intermediate_height
=
h
+
7
;
if
(
x_step_q4
!=
16
||
y_step_q4
!=
16
)
return
vp9_convolve8_c
(
src
,
src_stride
,
dst
,
dst_stride
,
filter_x
,
x_step_q4
,
filter_y
,
y_step_q4
,
w
,
h
);
/* Filter starting 3 lines back. The neon implementation will ignore the
* given height and filter a multiple of 4 lines. Since this goes in to
* the temp buffer which has lots of extra room and is subsequently discarded
* this is safe if somewhat less than ideal.
*/
vp9_convolve8_horiz_neon
(
src
-
src_stride
*
3
,
src_stride
,
temp
,
64
,
filter_x
,
x_step_q4
,
filter_y
,
y_step_q4
,
w
,
intermediate_height
);
/* Step into the temp buffer 3 lines to get the actual frame data */
vp9_convolve8_vert_neon
(
temp
+
64
*
3
,
64
,
dst
,
dst_stride
,
filter_x
,
x_step_q4
,
filter_y
,
y_step_q4
,
w
,
h
);
}
void
vp9_convolve8_avg_neon
(
const
uint8_t
*
src
,
ptrdiff_t
src_stride
,
uint8_t
*
dst
,
ptrdiff_t
dst_stride
,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
)
{
uint8_t
temp
[
64
*
72
];
int
intermediate_height
=
h
+
7
;
if
(
x_step_q4
!=
16
||
y_step_q4
!=
16
)
return
vp9_convolve8_avg_c
(
src
,
src_stride
,
dst
,
dst_stride
,
filter_x
,
x_step_q4
,
filter_y
,
y_step_q4
,
w
,
h
);
/* This implementation has the same issues as above. In addition, we only want
* to average the values after both passes.
*/
vp9_convolve8_horiz_neon
(
src
-
src_stride
*
3
,
src_stride
,
temp
,
64
,
filter_x
,
x_step_q4
,
filter_y
,
y_step_q4
,
w
,
intermediate_height
);
vp9_convolve8_avg_vert_neon
(
temp
+
64
*
3
,
64
,
dst
,
dst_stride
,
filter_x
,
x_step_q4
,
filter_y
,
y_step_q4
,
w
,
h
);
}
This diff is collapsed.
Click to expand it.
vp9/common/vp9_rtcd_defs.sh
+
2
−
2
View file @
9ca66ec0
...
@@ -271,7 +271,7 @@ prototype void vp9_convolve_avg "const uint8_t *src, ptrdiff_t src_stride, uint8
...
@@ -271,7 +271,7 @@ prototype void vp9_convolve_avg "const uint8_t *src, ptrdiff_t src_stride, uint8
specialize vp9_convolve_avg sse2
specialize vp9_convolve_avg sse2
prototype void vp9_convolve8
"const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"
prototype void vp9_convolve8
"const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"
specialize vp9_convolve8 ssse3
specialize vp9_convolve8 ssse3
neon
prototype void vp9_convolve8_horiz
"const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"
prototype void vp9_convolve8_horiz
"const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"
specialize vp9_convolve8_horiz ssse3 neon
specialize vp9_convolve8_horiz ssse3 neon
...
@@ -280,7 +280,7 @@ prototype void vp9_convolve8_vert "const uint8_t *src, ptrdiff_t src_stride, uin
...
@@ -280,7 +280,7 @@ prototype void vp9_convolve8_vert "const uint8_t *src, ptrdiff_t src_stride, uin
specialize vp9_convolve8_vert ssse3 neon
specialize vp9_convolve8_vert ssse3 neon
prototype void vp9_convolve8_avg
"const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"
prototype void vp9_convolve8_avg
"const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"
specialize vp9_convolve8_avg ssse3
specialize vp9_convolve8_avg ssse3
neon
prototype void vp9_convolve8_avg_horiz
"const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"
prototype void vp9_convolve8_avg_horiz
"const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"
specialize vp9_convolve8_avg_horiz ssse3 neon
specialize vp9_convolve8_avg_horiz ssse3 neon
...
...
This diff is collapsed.
Click to expand it.
vp9/vp9_common.mk
+
1
−
0
View file @
9ca66ec0
...
@@ -85,6 +85,7 @@ endif
...
@@ -85,6 +85,7 @@ endif
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_idct_intrin_sse2.c
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_idct_intrin_sse2.c
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_convolve_neon.c
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_convolve8_neon
$(
ASM
)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_convolve8_neon
$(
ASM
)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_convolve8_avg_neon
$(
ASM
)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_convolve8_avg_neon
$(
ASM
)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_loopfilter_neon
$(
ASM
)
VP9_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/vp9_loopfilter_neon
$(
ASM
)
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets