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
f2e246f5
Commit
f2e246f5
authored
Jan 25, 2011
by
Diego Elio Pettenò
Committed by
Janne Grunau
Jan 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make ff_png_pass_xmin and ff_png_pass_xshift static to png.c.
Signed-off-by:
Janne Grunau
<
janne-ffmpeg@jannau.net
>
parent
676f1f53
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
8 deletions
+2
-8
png.c
libavcodec/png.c
+2
-2
png.h
libavcodec/png.h
+0
-6
No files found.
libavcodec/png.c
View file @
f2e246f5
...
@@ -31,12 +31,12 @@ const uint8_t ff_png_pass_ymask[NB_PASSES] = {
...
@@ -31,12 +31,12 @@ const uint8_t ff_png_pass_ymask[NB_PASSES] = {
};
};
/* minimum x value */
/* minimum x value */
const
uint8_t
ff_png_pass_xmin
[
NB_PASSES
]
=
{
static
const
uint8_t
ff_png_pass_xmin
[
NB_PASSES
]
=
{
0
,
4
,
0
,
2
,
0
,
1
,
0
0
,
4
,
0
,
2
,
0
,
1
,
0
};
};
/* x shift to get row width */
/* x shift to get row width */
const
uint8_t
ff_png_pass_xshift
[
NB_PASSES
]
=
{
static
const
uint8_t
ff_png_pass_xshift
[
NB_PASSES
]
=
{
3
,
3
,
2
,
2
,
1
,
1
,
0
3
,
3
,
2
,
2
,
1
,
1
,
0
};
};
...
...
libavcodec/png.h
View file @
f2e246f5
...
@@ -55,12 +55,6 @@ extern const uint8_t ff_mngsig[8];
...
@@ -55,12 +55,6 @@ extern const uint8_t ff_mngsig[8];
/* Mask to determine which y pixels are valid in a pass */
/* Mask to determine which y pixels are valid in a pass */
extern
const
uint8_t
ff_png_pass_ymask
[
NB_PASSES
];
extern
const
uint8_t
ff_png_pass_ymask
[
NB_PASSES
];
/* minimum x value */
extern
const
uint8_t
ff_png_pass_xmin
[
NB_PASSES
];
/* x shift to get row width */
extern
const
uint8_t
ff_png_pass_xshift
[
NB_PASSES
];
/* Mask to determine which pixels are valid in a pass */
/* Mask to determine which pixels are valid in a pass */
extern
const
uint8_t
ff_png_pass_mask
[
NB_PASSES
];
extern
const
uint8_t
ff_png_pass_mask
[
NB_PASSES
];
...
...
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