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
811b17fb
Commit
811b17fb
authored
May 14, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: cosmetics: fix vertical alignment for pads in some filters
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
dc6f1a8d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
23 deletions
+23
-23
vf_colorbalance.c
libavfilter/vf_colorbalance.c
+9
-9
vf_colorchannelmixer.c
libavfilter/vf_colorchannelmixer.c
+9
-9
vf_curves.c
libavfilter/vf_curves.c
+5
-5
No files found.
libavfilter/vf_colorbalance.c
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
=
{
...
...
libavfilter/vf_colorchannelmixer.c
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
=
{
...
...
libavfilter/vf_curves.c
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
=
{
...
...
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