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
811b17fb
Commit
811b17fb
authored
11 years ago
by
Paul B Mahol
Browse files
Options
Downloads
Patches
Plain Diff
lavfi: cosmetics: fix vertical alignment for pads in some filters
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
dc6f1a8d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libavfilter/vf_colorbalance.c
+9
-9
9 additions, 9 deletions
libavfilter/vf_colorbalance.c
libavfilter/vf_colorchannelmixer.c
+9
-9
9 additions, 9 deletions
libavfilter/vf_colorchannelmixer.c
libavfilter/vf_curves.c
+5
-5
5 additions, 5 deletions
libavfilter/vf_curves.c
with
23 additions
and
23 deletions
libavfilter/vf_colorbalance.c
+
9
−
9
View file @
811b17fb
...
@@ -185,20 +185,20 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
...
@@ -185,20 +185,20 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static
const
AVFilterPad
colorbalance_inputs
[]
=
{
static
const
AVFilterPad
colorbalance_inputs
[]
=
{
{
{
.
name
=
"default"
,
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
filter_frame
=
filter_frame
,
},
},
{
NULL
}
{
NULL
}
};
};
static
const
AVFilterPad
colorbalance_outputs
[]
=
{
static
const
AVFilterPad
colorbalance_outputs
[]
=
{
{
{
.
name
=
"default"
,
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_output
,
.
config_props
=
config_output
,
},
},
{
NULL
}
{
NULL
}
};
};
AVFilter
avfilter_vf_colorbalance
=
{
AVFilter
avfilter_vf_colorbalance
=
{
...
...
This diff is collapsed.
Click to expand it.
libavfilter/vf_colorchannelmixer.c
+
9
−
9
View file @
811b17fb
...
@@ -331,20 +331,20 @@ static av_cold void uninit(AVFilterContext *ctx)
...
@@ -331,20 +331,20 @@ static av_cold void uninit(AVFilterContext *ctx)
static
const
AVFilterPad
colorchannelmixer_inputs
[]
=
{
static
const
AVFilterPad
colorchannelmixer_inputs
[]
=
{
{
{
.
name
=
"default"
,
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
filter_frame
=
filter_frame
,
.
filter_frame
=
filter_frame
,
},
},
{
NULL
}
{
NULL
}
};
};
static
const
AVFilterPad
colorchannelmixer_outputs
[]
=
{
static
const
AVFilterPad
colorchannelmixer_outputs
[]
=
{
{
{
.
name
=
"default"
,
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
config_props
=
config_output
,
.
config_props
=
config_output
,
},
},
{
NULL
}
{
NULL
}
};
};
AVFilter
avfilter_vf_colorchannelmixer
=
{
AVFilter
avfilter_vf_colorchannelmixer
=
{
...
...
This diff is collapsed.
Click to expand it.
libavfilter/vf_curves.c
+
5
−
5
View file @
811b17fb
...
@@ -532,11 +532,11 @@ static const AVFilterPad curves_inputs[] = {
...
@@ -532,11 +532,11 @@ static const AVFilterPad curves_inputs[] = {
};
};
static
const
AVFilterPad
curves_outputs
[]
=
{
static
const
AVFilterPad
curves_outputs
[]
=
{
{
{
.
name
=
"default"
,
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
},
},
{
NULL
}
{
NULL
}
};
};
AVFilter
avfilter_vf_curves
=
{
AVFilter
avfilter_vf_curves
=
{
...
...
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