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
3554c2fa
Commit
3554c2fa
authored
May 09, 2014
by
Matt Oliver
Committed by
Michael Niedermayer
May 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libmpcodecs: Fix compilation due to missing static in suncc.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
8a216138
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
vf_fspp.c
libavfilter/libmpcodecs/vf_fspp.c
+1
-1
vf_pp7.c
libavfilter/libmpcodecs/vf_pp7.c
+1
-1
vf_uspp.c
libavfilter/libmpcodecs/vf_uspp.c
+1
-1
No files found.
libavfilter/libmpcodecs/vf_fspp.c
View file @
3554c2fa
...
...
@@ -75,7 +75,7 @@ static const short custom_threshold[64]=
20
,
27
,
26
,
23
,
20
,
15
,
11
,
5
};
DECLARE_A
SM_CONST
(
32
,
uint8_t
,
dither
)[
8
][
8
]
=
{
DECLARE_A
LIGNED
(
32
,
static
const
uint8_t
,
dither
)[
8
][
8
]
=
{
{
0
,
48
,
12
,
60
,
3
,
51
,
15
,
63
,
},
{
32
,
16
,
44
,
28
,
35
,
19
,
47
,
31
,
},
{
8
,
56
,
4
,
52
,
11
,
59
,
7
,
55
,
},
...
...
libavfilter/libmpcodecs/vf_pp7.c
View file @
3554c2fa
...
...
@@ -45,7 +45,7 @@
#define XMAX(a,b) ((a) > (b) ? (a) : (b))
//===========================================================================//
DECLARE_A
SM_CONST
(
8
,
uint8_t
,
dither
)[
8
][
8
]
=
{
DECLARE_A
LIGNED
(
8
,
static
const
uint8_t
,
dither
)[
8
][
8
]
=
{
{
0
,
48
,
12
,
60
,
3
,
51
,
15
,
63
,
},
{
32
,
16
,
44
,
28
,
35
,
19
,
47
,
31
,
},
{
8
,
56
,
4
,
52
,
11
,
59
,
7
,
55
,
},
...
...
libavfilter/libmpcodecs/vf_uspp.c
View file @
3554c2fa
...
...
@@ -44,7 +44,7 @@
#define BLOCK 16
//===========================================================================//
DECLARE_A
SM_CONST
(
8
,
uint8_t
,
dither
)[
8
][
8
]
=
{
DECLARE_A
LIGNED
(
8
,
static
const
uint8_t
,
dither
)[
8
][
8
]
=
{
{
0
*
4
,
48
*
4
,
12
*
4
,
60
*
4
,
3
*
4
,
51
*
4
,
15
*
4
,
63
*
4
,
},
{
32
*
4
,
16
*
4
,
44
*
4
,
28
*
4
,
35
*
4
,
19
*
4
,
47
*
4
,
31
*
4
,
},
{
8
*
4
,
56
*
4
,
4
*
4
,
52
*
4
,
11
*
4
,
59
*
4
,
7
*
4
,
55
*
4
,
},
...
...
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