Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
7831fb90
Commit
7831fb90
authored
Nov 23, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
textureencdsp: cosmetics: Use normal static const for tables
parent
99cb833f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
texturedspenc.c
libavcodec/texturedspenc.c
+4
-4
No files found.
libavcodec/texturedspenc.c
View file @
7831fb90
...
...
@@ -32,13 +32,13 @@
#include "texturedsp.h"
const
static
uint8_t
expand5
[
32
]
=
{
static
const
uint8_t
expand5
[
32
]
=
{
0
,
8
,
16
,
24
,
33
,
41
,
49
,
57
,
66
,
74
,
82
,
90
,
99
,
107
,
115
,
123
,
132
,
140
,
148
,
156
,
165
,
173
,
181
,
189
,
198
,
206
,
214
,
222
,
231
,
239
,
247
,
255
,
};
const
static
uint8_t
expand6
[
64
]
=
{
static
const
uint8_t
expand6
[
64
]
=
{
0
,
4
,
8
,
12
,
16
,
20
,
24
,
28
,
32
,
36
,
40
,
44
,
48
,
52
,
56
,
60
,
65
,
69
,
73
,
77
,
81
,
85
,
89
,
93
,
97
,
101
,
105
,
109
,
113
,
117
,
121
,
125
,
130
,
134
,
138
,
142
,
...
...
@@ -47,7 +47,7 @@ const static uint8_t expand6[64] = {
243
,
247
,
251
,
255
,
};
const
static
uint8_t
match5
[
256
][
2
]
=
{
static
const
uint8_t
match5
[
256
][
2
]
=
{
{
0
,
0
},
{
0
,
0
},
{
0
,
1
},
{
0
,
1
},
{
1
,
0
},
{
1
,
0
},
{
1
,
0
},
{
1
,
1
},
{
1
,
1
},
{
2
,
0
},
{
2
,
0
},
{
0
,
4
},
{
2
,
1
},
{
2
,
1
},
{
2
,
1
},
{
3
,
0
},
{
3
,
0
},
{
3
,
0
},
...
...
@@ -93,7 +93,7 @@ const static uint8_t match5[256][2] = {
{
31
,
30
},
{
31
,
30
},
{
31
,
31
},
{
31
,
31
},
};
const
static
uint8_t
match6
[
256
][
2
]
=
{
static
const
uint8_t
match6
[
256
][
2
]
=
{
{
0
,
0
},
{
0
,
1
},
{
1
,
0
},
{
1
,
0
},
{
1
,
1
},
{
2
,
0
},
{
2
,
1
},
{
3
,
0
},
{
3
,
0
},
{
3
,
1
},
{
4
,
0
},
{
4
,
0
},
{
4
,
1
},
{
5
,
0
},
{
5
,
1
},
{
6
,
0
},
{
6
,
0
},
{
6
,
1
},
...
...
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