summaryrefslogtreecommitdiff
path: root/libavfilter/vf_colorchannelmixer.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-05-14 15:27:25 +0000
committerPaul B Mahol <onemda@gmail.com>2013-05-14 15:31:56 +0000
commit811b17fbad07c1a34ed249e0df461fc33ff8a64b (patch)
treeaa1771192f15152a476ab7c0fe98523d4a212f91 /libavfilter/vf_colorchannelmixer.c
parentdc6f1a8dda00c3bc206486396e4a11941fc1cbe3 (diff)
lavfi: cosmetics: fix vertical alignment for pads in some filters
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_colorchannelmixer.c')
-rw-r--r--libavfilter/vf_colorchannelmixer.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/libavfilter/vf_colorchannelmixer.c b/libavfilter/vf_colorchannelmixer.c
index c187c20f63..9c0044d0c9 100644
--- a/libavfilter/vf_colorchannelmixer.c
+++ b/libavfilter/vf_colorchannelmixer.c
@@ -331,20 +331,20 @@ static av_cold void uninit(AVFilterContext *ctx)
static const AVFilterPad colorchannelmixer_inputs[] = {
{
- .name = "default",
- .type = AVMEDIA_TYPE_VIDEO,
- .filter_frame = filter_frame,
+ .name = "default",
+ .type = AVMEDIA_TYPE_VIDEO,
+ .filter_frame = filter_frame,
},
{ NULL }
};
static const AVFilterPad colorchannelmixer_outputs[] = {
- {
- .name = "default",
- .type = AVMEDIA_TYPE_VIDEO,
- .config_props = config_output,
- },
- { NULL }
+ {
+ .name = "default",
+ .type = AVMEDIA_TYPE_VIDEO,
+ .config_props = config_output,
+ },
+ { NULL }
};
AVFilter avfilter_vf_colorchannelmixer = {