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
4e85ecbc
Commit
4e85ecbc
authored
11 years ago
by
Johann
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "VP8 for ARMv8 by using NEON intrinsics 03"
parents
08f250f5
d749ab62
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
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
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
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
vp8/common/arm/neon/dc_only_idct_add_neon.asm
+0
-54
vp8/common/arm/neon/dc_only_idct_add_neon.asm
vp8/common/arm/neon/dc_only_idct_add_neon.c
+42
-0
vp8/common/arm/neon/dc_only_idct_add_neon.c
vp8/vp8_common.mk
+1
-1
vp8/vp8_common.mk
with
43 additions
and
55 deletions
vp8/common/arm/neon/dc_only_idct_add_neon.asm
deleted
100644 → 0
+
0
−
54
View file @
08f250f5
;
; Copyright (c) 2010 The WebM project authors. All Rights Reserved.
;
; Use of this source code is governed by a BSD-style license and patent
; grant that can be found in the LICENSE file in the root of the source
; tree. All contributing project authors may be found in the AUTHORS
; file in the root of the source tree.
;
EXPORT
|
vp8_dc_only_idct_add_neon
|
ARM
REQUIRE8
PRESERVE8
AREA
||
.text
||
,
CODE
,
READONLY
,
AL
IGN
=
2
;void vp8_dc_only_idct_add_c(short input_dc, unsigned char *pred_ptr,
; int pred_stride, unsigned char *dst_ptr,
; int dst_stride)
; r0 input_dc
; r1 pred_ptr
; r2 pred_stride
; r3 dst_ptr
; sp dst_stride
|
vp8_dc_only_idct_add_neon
|
PROC
add
r0
,
r0
,
#
4
asr
r0
,
r0
,
#
3
ldr
r12
,
[
sp
]
vdup.16
q0
,
r0
vld1.32
{
d2
[
0
]
}
,
[
r1
],
r2
vld1.32
{
d2
[
1
]
}
,
[
r1
],
r2
vld1.32
{
d4
[
0
]
}
,
[
r1
],
r2
vld1.32
{
d4
[
1
]
}
,
[
r1
]
vaddw.u8
q1
,
q0
,
d2
vaddw.u8
q2
,
q0
,
d4
vqmovun.s16
d2
,
q1
vqmovun.s16
d4
,
q2
vst1.32
{
d2
[
0
]
}
,
[
r3
],
r12
vst1.32
{
d2
[
1
]
}
,
[
r3
],
r12
vst1.32
{
d4
[
0
]
}
,
[
r3
],
r12
vst1.32
{
d4
[
1
]
}
,
[
r3
]
bx
lr
ENDP
END
This diff is collapsed.
Click to expand it.
vp8/common/arm/neon/dc_only_idct_add_neon.c
0 → 100644
+
42
−
0
View file @
4e85ecbc
/*
* Copyright (c) 2014 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
<arm_neon.h>
void
vp8_dc_only_idct_add_neon
(
int16_t
input_dc
,
unsigned
char
*
pred_ptr
,
int
pred_stride
,
unsigned
char
*
dst_ptr
,
int
dst_stride
)
{
int
i
;
uint16_t
a1
=
((
input_dc
+
4
)
>>
3
);
uint32x2_t
d2u32
=
vdup_n_u32
(
0
);
uint8x8_t
d2u8
;
uint16x8_t
q1u16
;
uint16x8_t
qAdd
;
qAdd
=
vdupq_n_u16
(
a1
);
for
(
i
=
0
;
i
<
2
;
i
++
)
{
d2u32
=
vld1_lane_u32
((
const
uint32_t
*
)
pred_ptr
,
d2u32
,
0
);
pred_ptr
+=
pred_stride
;
d2u32
=
vld1_lane_u32
((
const
uint32_t
*
)
pred_ptr
,
d2u32
,
1
);
pred_ptr
+=
pred_stride
;
q1u16
=
vaddw_u8
(
qAdd
,
vreinterpret_u8_u32
(
d2u32
));
d2u8
=
vqmovun_s16
(
vreinterpretq_s16_u16
(
q1u16
));
vst1_lane_u32
((
uint32_t
*
)
dst_ptr
,
vreinterpret_u32_u8
(
d2u8
),
0
);
dst_ptr
+=
dst_stride
;
vst1_lane_u32
((
uint32_t
*
)
dst_ptr
,
vreinterpret_u32_u8
(
d2u8
),
1
);
dst_ptr
+=
dst_stride
;
}
}
This diff is collapsed.
Click to expand it.
vp8/vp8_common.mk
+
1
−
1
View file @
4e85ecbc
...
@@ -159,7 +159,6 @@ VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/vp8_variance_halfpixvar16x16_
...
@@ -159,7 +159,6 @@ VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/vp8_variance_halfpixvar16x16_
VP8_COMMON_SRCS-$(HAVE_MEDIA)
+=
common/arm/armv6/vp8_variance_halfpixvar16x16_hv_armv6
$(
ASM
)
VP8_COMMON_SRCS-$(HAVE_MEDIA)
+=
common/arm/armv6/vp8_variance_halfpixvar16x16_hv_armv6
$(
ASM
)
# common (neon)
# common (neon)
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/dc_only_idct_add_neon
$(
ASM
)
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/iwalsh_neon
$(
ASM
)
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/iwalsh_neon
$(
ASM
)
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/loopfilter_neon
$(
ASM
)
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/loopfilter_neon
$(
ASM
)
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/loopfiltersimplehorizontaledge_neon
$(
ASM
)
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/loopfiltersimplehorizontaledge_neon
$(
ASM
)
...
@@ -187,6 +186,7 @@ VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/vp8_subpixelvariance16x16s_neon
...
@@ -187,6 +186,7 @@ VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/vp8_subpixelvariance16x16s_neon
# common (neon intrinsics)
# common (neon intrinsics)
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/bilinearpredict_neon.c
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/bilinearpredict_neon.c
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/copymem_neon.c
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/copymem_neon.c
VP8_COMMON_SRCS-$(HAVE_NEON)
+=
common/arm/neon/dc_only_idct_add_neon.c
$(
eval
$(
call rtcd_h_template,vp8_rtcd,vp8/common/rtcd_defs.sh
))
$(
eval
$(
call rtcd_h_template,vp8_rtcd,vp8/common/rtcd_defs.sh
))
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