Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
f2e246f5
Commit
f2e246f5
authored
14 years ago
by
Diego Elio Pettenò
Committed by
Janne Grunau
14 years ago
Browse files
Options
Downloads
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
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/png.c
+2
-2
2 additions, 2 deletions
libavcodec/png.c
libavcodec/png.h
+0
-6
0 additions, 6 deletions
libavcodec/png.h
with
2 additions
and
8 deletions
libavcodec/png.c
+
2
−
2
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
};
};
...
...
This diff is collapsed.
Click to expand it.
libavcodec/png.h
+
0
−
6
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
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment