Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
6ae588f6
Commit
6ae588f6
authored
Apr 14, 2017
by
Debargha Mukherjee
Browse files
Reduce array sizes for Wiener update steps
Change-Id: Iff0cb1d492c7a8c2035b9bd752b1d00260135672
parent
5b4a7264
Changes
1
Show whitespace changes
Inline
Side-by-side
av1/encoder/pickrst.c
View file @
6ae588f6
...
...
@@ -573,7 +573,7 @@ static INLINE int wrap_index(int i) {
static
void
update_a_sep_sym
(
double
**
Mc
,
double
**
Hc
,
double
*
a
,
double
*
b
)
{
int
i
,
j
;
double
S
[
WIENER_WIN
];
double
A
[
WIENER_WIN
],
B
[
WIENER_
WIN2
];
double
A
[
WIENER_
HALF
WIN
1
],
B
[
WIENER_
HALFWIN1
*
WIENER_HALFWIN1
];
int
w
,
w2
;
memset
(
A
,
0
,
sizeof
(
A
));
memset
(
B
,
0
,
sizeof
(
B
));
...
...
@@ -619,7 +619,7 @@ static void update_a_sep_sym(double **Mc, double **Hc, double *a, double *b) {
static
void
update_b_sep_sym
(
double
**
Mc
,
double
**
Hc
,
double
*
a
,
double
*
b
)
{
int
i
,
j
;
double
S
[
WIENER_WIN
];
double
A
[
WIENER_WIN
],
B
[
WIENER_
WIN2
];
double
A
[
WIENER_
HALF
WIN
1
],
B
[
WIENER_
HALFWIN1
*
WIENER_HALFWIN1
];
int
w
,
w2
;
memset
(
A
,
0
,
sizeof
(
A
));
memset
(
B
,
0
,
sizeof
(
B
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment