summaryrefslogtreecommitdiff
path: root/libavfilter/vf_split.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-05-22 01:32:18 +0200
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-05-22 02:43:47 +0200
commit6f5a145be17c1aeb61a0c7f2ef14a8ec537d7d46 (patch)
tree8b980bba73c3b80ace924698ddb85cb492e77bf7 /libavfilter/vf_split.c
parentde1100a00a483d967ed82c46792e1553b5bdc332 (diff)
vf_split: give more meaningful names to the output pads
Rename "default" -> "output1", "default2" -> output2.
Diffstat (limited to 'libavfilter/vf_split.c')
-rw-r--r--libavfilter/vf_split.c4
1 files 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}},
};