Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
e6f95525
Commit
e6f95525
authored
11 years ago
by
Ronald S. Bultje
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Downloads
Plain Diff
Merge "SSSE3 assembly for 4x4/8x8/16x16/32x32 H intra prediction."
parents
6a602490
7fd64326
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
vp9/common/vp9_rtcd_defs.sh
+4
-4
4 additions, 4 deletions
vp9/common/vp9_rtcd_defs.sh
vp9/common/x86/vp9_intrapred_ssse3.asm
+87
-0
87 additions, 0 deletions
vp9/common/x86/vp9_intrapred_ssse3.asm
vp9/vp9_common.mk
+1
-0
1 addition, 0 deletions
vp9/vp9_common.mk
with
92 additions
and
4 deletions
vp9/common/vp9_rtcd_defs.sh
+
4
−
4
View file @
e6f95525
...
...
@@ -64,7 +64,7 @@ prototype void vp9_d63_predictor_4x4 "uint8_t *ypred_ptr, ptrdiff_t y_stride, ui
specialize vp9_d63_predictor_4x4
prototype void vp9_h_predictor_4x4
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_h_predictor_4x4
specialize vp9_h_predictor_4x4
ssse3
prototype void vp9_d117_predictor_4x4
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_d117_predictor_4x4
...
...
@@ -103,7 +103,7 @@ prototype void vp9_d63_predictor_8x8 "uint8_t *ypred_ptr, ptrdiff_t y_stride, ui
specialize vp9_d63_predictor_8x8
prototype void vp9_h_predictor_8x8
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_h_predictor_8x8
specialize vp9_h_predictor_8x8
ssse3
prototype void vp9_d117_predictor_8x8
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_d117_predictor_8x8
...
...
@@ -142,7 +142,7 @@ prototype void vp9_d63_predictor_16x16 "uint8_t *ypred_ptr, ptrdiff_t y_stride,
specialize vp9_d63_predictor_16x16
prototype void vp9_h_predictor_16x16
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_h_predictor_16x16
specialize vp9_h_predictor_16x16
ssse3
prototype void vp9_d117_predictor_16x16
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_d117_predictor_16x16
...
...
@@ -181,7 +181,7 @@ prototype void vp9_d63_predictor_32x32 "uint8_t *ypred_ptr, ptrdiff_t y_stride,
specialize vp9_d63_predictor_32x32
prototype void vp9_h_predictor_32x32
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_h_predictor_32x32
specialize vp9_h_predictor_32x32
ssse3
prototype void vp9_d117_predictor_32x32
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_d117_predictor_32x32
...
...
This diff is collapsed.
Click to expand it.
vp9/common/x86/vp9_intrapred_ssse3.asm
0 → 100644
+
87
−
0
View file @
e6f95525
;
; Copyright (c) 2010 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 "third_party/x86inc/x86inc.asm"
SECTION
.text
INIT_MMX
ss
se3
cglobal
h_predictor_4x4
,
2
,
4
,
3
,
ds
t
,
stride
,
line
,
left
movifnidn
leftq
,
leftmp
add
leftq
,
4
mov
lineq
,
-
2
pxor
m0
,
m0
.loop:
movd
m1
,
[
leftq
+
lineq
*
2
]
movd
m2
,
[
leftq
+
lineq
*
2
+
1
]
pshufb
m1
,
m0
pshufb
m2
,
m0
movd
[
ds
tq
],
m1
movd
[
ds
tq
+
strideq
],
m2
lea
ds
tq
,
[
ds
tq
+
strideq
*
2
]
inc
lineq
jnz
.loop
REP_RET
INIT_MMX
ss
se3
cglobal
h_predictor_8x8
,
2
,
4
,
3
,
ds
t
,
stride
,
line
,
left
movifnidn
leftq
,
leftmp
add
leftq
,
8
mov
lineq
,
-
4
pxor
m0
,
m0
.loop:
movd
m1
,
[
leftq
+
lineq
*
2
]
movd
m2
,
[
leftq
+
lineq
*
2
+
1
]
pshufb
m1
,
m0
pshufb
m2
,
m0
movq
[
ds
tq
],
m1
movq
[
ds
tq
+
strideq
],
m2
lea
ds
tq
,
[
ds
tq
+
strideq
*
2
]
inc
lineq
jnz
.loop
REP_RET
INIT_XMM
ss
se3
cglobal
h_predictor_16x16
,
2
,
4
,
3
,
ds
t
,
stride
,
line
,
left
movifnidn
leftq
,
leftmp
add
leftq
,
16
mov
lineq
,
-
8
pxor
m0
,
m0
.loop:
movd
m1
,
[
leftq
+
lineq
*
2
]
movd
m2
,
[
leftq
+
lineq
*
2
+
1
]
pshufb
m1
,
m0
pshufb
m2
,
m0
mova
[
ds
tq
],
m1
mova
[
ds
tq
+
strideq
],
m2
lea
ds
tq
,
[
ds
tq
+
strideq
*
2
]
inc
lineq
jnz
.loop
REP_RET
INIT_XMM
ss
se3
cglobal
h_predictor_32x32
,
2
,
4
,
3
,
ds
t
,
stride
,
line
,
left
movifnidn
leftq
,
leftmp
add
leftq
,
32
mov
lineq
,
-
16
pxor
m0
,
m0
.loop:
movd
m1
,
[
leftq
+
lineq
*
2
]
movd
m2
,
[
leftq
+
lineq
*
2
+
1
]
pshufb
m1
,
m0
pshufb
m2
,
m0
mova
[
ds
tq
],
m1
mova
[
ds
tq
+
16
],
m1
mova
[
ds
tq
+
strideq
],
m2
mova
[
ds
tq
+
strideq
+
16
],
m2
lea
ds
tq
,
[
ds
tq
+
strideq
*
2
]
inc
lineq
jnz
.loop
REP_RET
This diff is collapsed.
Click to expand it.
vp9/vp9_common.mk
+
1
−
0
View file @
e6f95525
...
...
@@ -82,6 +82,7 @@ VP9_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp9_iwalsh_sse2.asm
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_loopfilter_sse2.asm
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_recon_sse2.asm
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_intrapred_sse2.asm
VP9_COMMON_SRCS-$(HAVE_SSSE3)
+=
common/x86/vp9_intrapred_ssse3.asm
VP9_COMMON_SRCS-$(HAVE_SSSE3)
+=
common/x86/vp9_subpixel_8t_ssse3.asm
ifeq
($(CONFIG_POSTPROC),yes)
VP9_COMMON_SRCS-$(HAVE_MMX)
+=
common/x86/vp9_postproc_mmx.asm
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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