Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
d22e2968
Commit
d22e2968
authored
Aug 09, 2010
by
John Koleszar
Browse files
cosmetics: add missing 2D array braces
Silences compile warning. Change-Id: I4b207d97f8570fe29aa2710e4ce4f02e7e43b57a
parent
392a9582
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/onyx_if.c
View file @
d22e2968
...
...
@@ -3237,13 +3237,20 @@ void write_cx_frame_to_file(YV12_BUFFER_CONFIG *frame, int this_frame)
#if USE_FILTER_LUT
static
int
modifier_lut
[
7
][
19
]
=
{
16
,
13
,
4
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
// Strength=0
16
,
15
,
10
,
3
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
// Strength=1
16
,
15
,
13
,
9
,
4
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
// Strength=2
16
,
16
,
15
,
13
,
10
,
7
,
3
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
// Strength=3
16
,
16
,
15
,
14
,
13
,
11
,
9
,
7
,
4
,
1
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
// Strength=4
16
,
16
,
16
,
15
,
15
,
14
,
13
,
11
,
10
,
8
,
7
,
5
,
3
,
0
,
0
,
0
,
0
,
0
,
0
,
// Strength=5
16
,
16
,
16
,
16
,
15
,
15
,
14
,
14
,
13
,
12
,
11
,
10
,
9
,
8
,
7
,
5
,
4
,
2
,
1
// Strength=6
// Strength=0
{
16
,
13
,
4
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
},
// Strength=1
{
16
,
15
,
10
,
3
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
},
// Strength=2
{
16
,
15
,
13
,
9
,
4
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
},
// Strength=3
{
16
,
16
,
15
,
13
,
10
,
7
,
3
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
},
// Strength=4
{
16
,
16
,
15
,
14
,
13
,
11
,
9
,
7
,
4
,
1
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
},
// Strength=5
{
16
,
16
,
16
,
15
,
15
,
14
,
13
,
11
,
10
,
8
,
7
,
5
,
3
,
0
,
0
,
0
,
0
,
0
,
0
},
// Strength=6
{
16
,
16
,
16
,
16
,
15
,
15
,
14
,
14
,
13
,
12
,
11
,
10
,
9
,
8
,
7
,
5
,
4
,
2
,
1
}
};
#endif
static
void
vp8cx_temp_blur1_c
...
...
Write
Preview
Markdown
is supported
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