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
0fa4777b
Commit
0fa4777b
authored
10 years ago
by
Johann
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Download
Plain Diff
Merge "Remove vp9_postproc_x86.h"
parents
92cdb96e
7516abc7
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
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
sandbox/Jingning/experimental
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
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
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp9/common/x86/vp9_postproc_x86.h
+0
-72
vp9/common/x86/vp9_postproc_x86.h
vp9/vp9_common.mk
+0
-1
vp9/vp9_common.mk
with
0 additions
and
73 deletions
vp9/common/x86/vp9_postproc_x86.h
deleted
100644 → 0
+
0
−
72
View file @
92cdb96e
/*
* 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.
*/
#ifndef VP9_COMMON_X86_VP9_POSTPROC_X86_H_
#define VP9_COMMON_X86_VP9_POSTPROC_X86_H_
#ifdef __cplusplus
extern
"C"
{
#endif
/* Note:
*
* This platform is commonly built for runtime CPU detection. If you modify
* any of the function mappings present in this file, be sure to also update
* them in the function pointer initialization code
*/
#if HAVE_MMX
extern
prototype_postproc_inplace
(
vp9_mbpost_proc_down_mmx
);
extern
prototype_postproc
(
vp9_post_proc_down_and_across_mmx
);
extern
prototype_postproc_addnoise
(
vp9_plane_add_noise_mmx
);
#if !CONFIG_RUNTIME_CPU_DETECT
#undef vp9_postproc_down
#define vp9_postproc_down vp9_mbpost_proc_down_mmx
#undef vp9_postproc_downacross
#define vp9_postproc_downacross vp9_post_proc_down_and_across_mmx
#undef vp9_postproc_addnoise
#define vp9_postproc_addnoise vp9_plane_add_noise_mmx
#endif
#endif
#if HAVE_SSE2
extern
prototype_postproc_inplace
(
vp9_mbpost_proc_down_xmm
);
extern
prototype_postproc_inplace
(
vp9_mbpost_proc_across_ip_xmm
);
extern
prototype_postproc
(
vp9_post_proc_down_and_across_xmm
);
extern
prototype_postproc_addnoise
(
vp9_plane_add_noise_wmt
);
#if !CONFIG_RUNTIME_CPU_DETECT
#undef vp9_postproc_down
#define vp9_postproc_down vp9_mbpost_proc_down_xmm
#undef vp9_postproc_across
#define vp9_postproc_across vp9_mbpost_proc_across_ip_xmm
#undef vp9_postproc_downacross
#define vp9_postproc_downacross vp9_post_proc_down_and_across_xmm
#undef vp9_postproc_addnoise
#define vp9_postproc_addnoise vp9_plane_add_noise_wmt
#endif
#endif
#ifdef __cplusplus
}
// extern "C"
#endif
#endif // VP9_COMMON_X86_VP9_POSTPROC_X86_H_
This diff is collapsed.
Click to expand it.
vp9/vp9_common.mk
+
0
−
1
View file @
0fa4777b
...
...
@@ -67,7 +67,6 @@ VP9_COMMON_SRCS-yes += common/vp9_common_data.h
VP9_COMMON_SRCS-yes
+=
common/vp9_scan.c
VP9_COMMON_SRCS-yes
+=
common/vp9_scan.h
VP9_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64)
+=
common/x86/vp9_postproc_x86.h
VP9_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64)
+=
common/x86/vp9_asm_stubs.c
VP9_COMMON_SRCS-$(ARCH_X86)$(ARCH_X86_64)
+=
common/x86/vp9_loopfilter_intrin_sse2.c
VP9_COMMON_SRCS-$(HAVE_AVX2)
+=
common/x86/vp9_loopfilter_intrin_avx2.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