1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

lavfi: cosmetics: fix vertical alignment for pads in some filters

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol
2013-05-14 15:27:25 +00:00
parent dc6f1a8dda
commit 811b17fbad
3 changed files with 23 additions and 23 deletions

View File

@@ -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 = {

View File

@@ -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 = {

View File

@@ -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 = {