From 6f5a145be17c1aeb61a0c7f2ef14a8ec537d7d46 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 22 May 2011 01:32:18 +0200 Subject: [PATCH] vf_split: give more meaningful names to the output pads Rename "default" -> "output1", "default2" -> output2. --- libavfilter/vf_split.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_split.c b/libavfilter/vf_split.c index 75b9c6a877..cbebf264fa 100644 --- a/libavfilter/vf_split.c +++ b/libavfilter/vf_split.c @@ -58,9 +58,9 @@ AVFilter avfilter_vf_split = { .draw_slice = draw_slice, .end_frame = end_frame, }, { .name = NULL}}, - .outputs = (AVFilterPad[]) {{ .name = "default", + .outputs = (AVFilterPad[]) {{ .name = "output1", .type = AVMEDIA_TYPE_VIDEO, }, - { .name = "default2", + { .name = "output2", .type = AVMEDIA_TYPE_VIDEO, }, { .name = NULL}}, };