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
6b78f11a
Commit
6b78f11a
authored
11 years ago
by
Matthew Heaney
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "Fix linker warnings for bilinear filters"
parents
03698aa6
dcab9896
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
forest
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
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
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
vp8/common/filter.c
+0
-2
vp8/common/filter.c
vp8/common/filter.h
+4
-2
vp8/common/filter.h
vp8/common/x86/filter_x86.c
+1
-1
vp8/common/x86/filter_x86.c
vp8/common/x86/filter_x86.h
+8
-2
vp8/common/x86/filter_x86.h
with
13 additions
and
7 deletions
vp8/common/filter.c
+
0
−
2
View file @
6b78f11a
...
@@ -9,9 +9,7 @@
...
@@ -9,9 +9,7 @@
*/
*/
#include
<stdlib.h>
#include
"filter.h"
#include
"filter.h"
#include
"vpx_ports/mem.h"
DECLARE_ALIGNED
(
16
,
const
short
,
vp8_bilinear_filters
[
8
][
2
])
=
DECLARE_ALIGNED
(
16
,
const
short
,
vp8_bilinear_filters
[
8
][
2
])
=
{
{
...
...
This diff is collapsed.
Click to expand it.
vp8/common/filter.h
+
4
−
2
View file @
6b78f11a
...
@@ -12,11 +12,13 @@
...
@@ -12,11 +12,13 @@
#ifndef FILTER_H
#ifndef FILTER_H
#define FILTER_H
#define FILTER_H
#include
"vpx_ports/mem.h"
#define BLOCK_HEIGHT_WIDTH 4
#define BLOCK_HEIGHT_WIDTH 4
#define VP8_FILTER_WEIGHT 128
#define VP8_FILTER_WEIGHT 128
#define VP8_FILTER_SHIFT 7
#define VP8_FILTER_SHIFT 7
extern
const
short
vp8_bilinear_filters
[
8
][
2
];
extern
DECLARE_ALIGNED
(
16
,
const
short
,
vp8_bilinear_filters
[
8
][
2
]
)
;
extern
const
short
vp8_sub_pel_filters
[
8
][
6
];
extern
DECLARE_ALIGNED
(
16
,
const
short
,
vp8_sub_pel_filters
[
8
][
6
]
)
;
#endif
#endif
This diff is collapsed.
Click to expand it.
vp8/common/x86/filter_x86.c
+
1
−
1
View file @
6b78f11a
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
* be found in the AUTHORS file in the root of the source tree.
*/
*/
#include
"vp
x_ports/mem
.h"
#include
"vp
8/common/x86/filter_x86
.h"
DECLARE_ALIGNED
(
16
,
const
short
,
vp8_bilinear_filters_x86_4
[
8
][
8
])
=
DECLARE_ALIGNED
(
16
,
const
short
,
vp8_bilinear_filters_x86_4
[
8
][
8
])
=
{
{
...
...
This diff is collapsed.
Click to expand it.
vp8/common/x86/filter_x86.h
+
8
−
2
View file @
6b78f11a
...
@@ -11,9 +11,15 @@
...
@@ -11,9 +11,15 @@
#ifndef FILTER_X86_H
#ifndef FILTER_X86_H
#define FILTER_X86_H
#define FILTER_X86_H
#include
"vpx_ports/mem.h"
/* x86 assembly specific copy of vp8/common/filter.c:vp8_bilinear_filters with
/* x86 assembly specific copy of vp8/common/filter.c:vp8_bilinear_filters with
* duplicated values */
* duplicated values */
extern
const
short
vp8_bilinear_filters_x86_4
[
8
][
8
];
/* duplicated 4x */
extern
const
short
vp8_bilinear_filters_x86_8
[
8
][
16
];
/* duplicated 8x */
/* duplicated 4x */
extern
DECLARE_ALIGNED
(
16
,
const
short
,
vp8_bilinear_filters_x86_4
[
8
][
8
]);
/* duplicated 8x */
extern
DECLARE_ALIGNED
(
16
,
const
short
,
vp8_bilinear_filters_x86_8
[
8
][
16
]);
#endif
/* FILTER_X86_H */
#endif
/* FILTER_X86_H */
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