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
381d3b8b
Commit
381d3b8b
authored
11 years ago
by
Dmitry Kovalev
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "vp9_filter.{h, c} cleanup + adding SUBPEL_TAPS constant."
parents
246381fa
d19ac4b6
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
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_filter.c
+11
-12
vp9/common/vp9_filter.c
vp9/common/vp9_filter.h
+8
-9
vp9/common/vp9_filter.h
with
19 additions
and
21 deletions
vp9/common/vp9_filter.c
+
11
−
12
View file @
381d3b8b
...
@@ -8,14 +8,12 @@
...
@@ -8,14 +8,12 @@
* 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
"vpx_ports/mem.h"
#include
<stdlib.h>
#include
"vp9/common/vp9_filter.h"
#include
"vp9/common/vp9_filter.h"
#include
"vpx_ports/mem.h"
#include
"vp9_rtcd.h"
#include
"vp9/common/vp9_common.h"
DECLARE_ALIGNED
(
256
,
const
int16_t
,
vp9_bilinear_filters
[
SUBPEL_SHIFTS
][
8
])
=
{
DECLARE_ALIGNED
(
256
,
const
int16_t
,
vp9_bilinear_filters
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
])
=
{
{
0
,
0
,
0
,
128
,
0
,
0
,
0
,
0
},
{
0
,
0
,
0
,
128
,
0
,
0
,
0
,
0
},
{
0
,
0
,
0
,
120
,
8
,
0
,
0
,
0
},
{
0
,
0
,
0
,
120
,
8
,
0
,
0
,
0
},
{
0
,
0
,
0
,
112
,
16
,
0
,
0
,
0
},
{
0
,
0
,
0
,
112
,
16
,
0
,
0
,
0
},
...
@@ -34,8 +32,9 @@ DECLARE_ALIGNED(256, const int16_t, vp9_bilinear_filters[SUBPEL_SHIFTS][8]) = {
...
@@ -34,8 +32,9 @@ DECLARE_ALIGNED(256, const int16_t, vp9_bilinear_filters[SUBPEL_SHIFTS][8]) = {
{
0
,
0
,
0
,
8
,
120
,
0
,
0
,
0
}
{
0
,
0
,
0
,
8
,
120
,
0
,
0
,
0
}
};
};
DECLARE_ALIGNED
(
256
,
const
int16_t
,
vp9_sub_pel_filters_8
[
SUBPEL_SHIFTS
][
8
])
=
{
// Lagrangian interpolation filter
/* Lagrangian interpolation filter */
DECLARE_ALIGNED
(
256
,
const
int16_t
,
vp9_sub_pel_filters_8
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
])
=
{
{
0
,
0
,
0
,
128
,
0
,
0
,
0
,
0
},
{
0
,
0
,
0
,
128
,
0
,
0
,
0
,
0
},
{
0
,
1
,
-
5
,
126
,
8
,
-
3
,
1
,
0
},
{
0
,
1
,
-
5
,
126
,
8
,
-
3
,
1
,
0
},
{
-
1
,
3
,
-
10
,
122
,
18
,
-
6
,
2
,
0
},
{
-
1
,
3
,
-
10
,
122
,
18
,
-
6
,
2
,
0
},
...
@@ -54,9 +53,9 @@ DECLARE_ALIGNED(256, const int16_t, vp9_sub_pel_filters_8[SUBPEL_SHIFTS][8]) = {
...
@@ -54,9 +53,9 @@ DECLARE_ALIGNED(256, const int16_t, vp9_sub_pel_filters_8[SUBPEL_SHIFTS][8]) = {
{
0
,
1
,
-
3
,
8
,
126
,
-
5
,
1
,
0
}
{
0
,
1
,
-
3
,
8
,
126
,
-
5
,
1
,
0
}
};
};
DECLARE_ALIGNED
(
256
,
const
int16_t
,
vp9_sub_pel_filters_8s
[
SUBPEL_SHIFTS
][
8
])
// DCT based filter
=
{
DECLARE_ALIGNED
(
256
,
const
int16_t
,
/* dct based filter */
vp9_sub_pel_filters_8s
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
])
=
{
{
0
,
0
,
0
,
128
,
0
,
0
,
0
,
0
},
{
0
,
0
,
0
,
128
,
0
,
0
,
0
,
0
},
{
-
1
,
3
,
-
7
,
127
,
8
,
-
3
,
1
,
0
},
{
-
1
,
3
,
-
7
,
127
,
8
,
-
3
,
1
,
0
},
{
-
2
,
5
,
-
13
,
125
,
17
,
-
6
,
3
,
-
1
},
{
-
2
,
5
,
-
13
,
125
,
17
,
-
6
,
3
,
-
1
},
...
@@ -75,9 +74,9 @@ DECLARE_ALIGNED(256, const int16_t, vp9_sub_pel_filters_8s[SUBPEL_SHIFTS][8])
...
@@ -75,9 +74,9 @@ DECLARE_ALIGNED(256, const int16_t, vp9_sub_pel_filters_8s[SUBPEL_SHIFTS][8])
{
0
,
1
,
-
3
,
8
,
127
,
-
7
,
3
,
-
1
}
{
0
,
1
,
-
3
,
8
,
127
,
-
7
,
3
,
-
1
}
};
};
// freqmultiplier = 0.5
DECLARE_ALIGNED
(
256
,
const
int16_t
,
DECLARE_ALIGNED
(
256
,
const
int16_t
,
vp9_sub_pel_filters_8lp
[
SUBPEL_SHIFTS
][
8
])
=
{
vp9_sub_pel_filters_8lp
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
])
=
{
/* freqmultiplier = 0.5 */
{
0
,
0
,
0
,
128
,
0
,
0
,
0
,
0
},
{
0
,
0
,
0
,
128
,
0
,
0
,
0
,
0
},
{
-
3
,
-
1
,
32
,
64
,
38
,
1
,
-
3
,
0
},
{
-
3
,
-
1
,
32
,
64
,
38
,
1
,
-
3
,
0
},
{
-
2
,
-
2
,
29
,
63
,
41
,
2
,
-
3
,
0
},
{
-
2
,
-
2
,
29
,
63
,
41
,
2
,
-
3
,
0
},
...
...
This diff is collapsed.
Click to expand it.
vp9/common/vp9_filter.h
+
8
−
9
View file @
381d3b8b
...
@@ -17,18 +17,17 @@
...
@@ -17,18 +17,17 @@
#define SUBPEL_BITS 4
#define SUBPEL_BITS 4
#define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
#define SUBPEL_MASK ((1 << SUBPEL_BITS) - 1)
#define SUBPEL_SHIFTS (1 << SUBPEL_BITS)
#define SUBPEL_SHIFTS (1 << SUBPEL_BITS)
#define SUBPEL_TAPS 8
extern
const
int16_t
vp9_bilinear_filters
[
SUBPEL_SHIFTS
][
8
];
extern
const
int16_t
vp9_bilinear_filters
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
];
extern
const
int16_t
vp9_sub_pel_filters_6
[
SUBPEL_SHIFTS
][
8
];
extern
const
int16_t
vp9_sub_pel_filters_6
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
];
extern
const
int16_t
vp9_sub_pel_filters_8
[
SUBPEL_SHIFTS
][
8
];
extern
const
int16_t
vp9_sub_pel_filters_8
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
];
extern
const
int16_t
vp9_sub_pel_filters_8s
[
SUBPEL_SHIFTS
][
8
];
extern
const
int16_t
vp9_sub_pel_filters_8s
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
];
extern
const
int16_t
vp9_sub_pel_filters_8lp
[
SUBPEL_SHIFTS
][
8
];
extern
const
int16_t
vp9_sub_pel_filters_8lp
[
SUBPEL_SHIFTS
][
SUBPEL_TAPS
];
// The VP9_BILINEAR_FILTERS_2TAP macro returns a pointer to the bilinear
// The VP9_BILINEAR_FILTERS_2TAP macro returns a pointer to the bilinear
// filter kernel as a 2 tap filter.
// filter kernel as a 2 tap filter.
#define BF_LENGTH (sizeof(vp9_bilinear_filters[0]) / \
#define VP9_BILINEAR_FILTERS_2TAP(x) \
sizeof(vp9_bilinear_filters[0][0]))
(vp9_bilinear_filters[(x)] + SUBPEL_TAPS/2 - 1)
#define BF_OFFSET (BF_LENGTH / 2 - 1)
#define VP9_BILINEAR_FILTERS_2TAP(x) (vp9_bilinear_filters[x] + BF_OFFSET)
#endif // VP9_COMMON_VP9_FILTER_H_
#endif // VP9_COMMON_VP9_FILTER_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