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
25ec1375
Commit
25ec1375
authored
11 years ago
by
Jim Bankoski
Browse files
Options
Download
Patches
Plain Diff
intrapred x86inc guards
Change-Id: If0399d8e11f4ebe75a5c91abb8d6a52a7709065b
parent
a93b115c
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
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp9/common/vp9_rtcd_defs.sh
+15
-14
vp9/common/vp9_rtcd_defs.sh
vp9/vp9_common.mk
+1
-1
vp9/vp9_common.mk
with
16 additions
and
15 deletions
vp9/common/vp9_rtcd_defs.sh
+
15
−
14
View file @
25ec1375
...
...
@@ -21,10 +21,11 @@ EOF
forward_decls vp9_common_forward_decls
# x86inc.asm doesn't work if pic is enabled on 32 bit platforms so no assembly.
[
"
$CONFIG_USE_X86INC
"
=
"yes"
]
&&
mmx_x86inc
=
mmx
&&
sse2_x86inc
=
sse2
&&
ssse3_x86inc
=
ssse3
[
"
$CONFIG_USE_X86INC
"
=
"yes"
]
&&
mmx_x86inc
=
mmx
&&
sse_x86inc
=
sse
&&
sse2_x86inc
=
sse2
&&
ssse3_x86inc
=
ssse3
# this variable is for functions that are 64 bit only.
[
$arch
=
"x86_64"
]
&&
mmx_x86_64
=
mmx
&&
sse2_x86_64
=
sse2
&&
ssse3_x86_64
=
ssse3
[
$arch
=
"x86_64"
]
&&
mmx_x86_64
=
mmx
&&
sse2_x86_64
=
sse2
&&
ssse3_x86_64
=
ssse3
#
# Dequant
...
...
@@ -67,13 +68,13 @@ prototype void vp9_d153_predictor_4x4 "uint8_t *ypred_ptr, ptrdiff_t y_stride, u
specialize vp9_d153_predictor_4x4
prototype void vp9_v_predictor_4x4
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_v_predictor_4x4 sse
specialize vp9_v_predictor_4x4
$
sse
_x86inc
prototype void vp9_tm_predictor_4x4
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_tm_predictor_4x4 sse
specialize vp9_tm_predictor_4x4
$
sse
_x86inc
prototype void vp9_dc_predictor_4x4
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_dc_predictor_4x4 sse
specialize vp9_dc_predictor_4x4
$
sse
_x86inc
prototype void vp9_dc_top_predictor_4x4
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_dc_top_predictor_4x4
...
...
@@ -106,13 +107,13 @@ prototype void vp9_d153_predictor_8x8 "uint8_t *ypred_ptr, ptrdiff_t y_stride, u
specialize vp9_d153_predictor_8x8
prototype void vp9_v_predictor_8x8
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_v_predictor_8x8 sse
specialize vp9_v_predictor_8x8
$
sse
_x86inc
prototype void vp9_tm_predictor_8x8
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_tm_predictor_8x8 sse2
specialize vp9_tm_predictor_8x8
$
sse2
_x86inc
prototype void vp9_dc_predictor_8x8
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_dc_predictor_8x8 sse
specialize vp9_dc_predictor_8x8
$
sse
_x86inc
prototype void vp9_dc_top_predictor_8x8
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_dc_top_predictor_8x8
...
...
@@ -145,13 +146,13 @@ prototype void vp9_d153_predictor_16x16 "uint8_t *ypred_ptr, ptrdiff_t y_stride,
specialize vp9_d153_predictor_16x16
prototype void vp9_v_predictor_16x16
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_v_predictor_16x16 sse2
specialize vp9_v_predictor_16x16
$
sse2
_x86inc
prototype void vp9_tm_predictor_16x16
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_tm_predictor_16x16 sse2
specialize vp9_tm_predictor_16x16
$
sse2
_x86inc
prototype void vp9_dc_predictor_16x16
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_dc_predictor_16x16 sse2
specialize vp9_dc_predictor_16x16
$
sse2
_x86inc
prototype void vp9_dc_top_predictor_16x16
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_dc_top_predictor_16x16
...
...
@@ -184,13 +185,13 @@ prototype void vp9_d153_predictor_32x32 "uint8_t *ypred_ptr, ptrdiff_t y_stride,
specialize vp9_d153_predictor_32x32
prototype void vp9_v_predictor_32x32
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_v_predictor_32x32 sse2
specialize vp9_v_predictor_32x32
$
sse2
_x86inc
prototype void vp9_tm_predictor_32x32
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_tm_predictor_32x32 sse2_x86_64
specialize vp9_tm_predictor_32x32
$
sse2_x86_64
prototype void vp9_dc_predictor_32x32
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_dc_predictor_32x32 sse2
specialize vp9_dc_predictor_32x32
$
sse2
_x86inc
prototype void vp9_dc_top_predictor_32x32
"uint8_t *ypred_ptr, ptrdiff_t y_stride, uint8_t *yabove_row, uint8_t *yleft_col"
specialize vp9_dc_top_predictor_32x32
...
...
This diff is collapsed.
Click to expand it.
vp9/vp9_common.mk
+
1
−
1
View file @
25ec1375
...
...
@@ -74,7 +74,6 @@ VP9_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64) += common/x86/vp9_loopfilter_intrin_ss
VP9_COMMON_SRCS-$(CONFIG_POSTPROC)
+=
common/vp9_postproc.h
VP9_COMMON_SRCS-$(CONFIG_POSTPROC)
+=
common/vp9_postproc.c
VP9_COMMON_SRCS-$(HAVE_MMX)
+=
common/x86/vp9_loopfilter_mmx.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)
...
...
@@ -84,6 +83,7 @@ endif
ifeq
($(USE_X86INC),yes)
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_copy_sse2.asm
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_intrapred_sse2.asm
endif
VP9_COMMON_SRCS-$(HAVE_SSE2)
+=
common/x86/vp9_idct_intrin_sse2.c
...
...
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