diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-22 01:32:18 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-22 02:43:47 +0200 |
commit | 6f5a145be17c1aeb61a0c7f2ef14a8ec537d7d46 (patch) | |
tree | 8b980bba73c3b80ace924698ddb85cb492e77bf7 | |
parent | de1100a00a483d967ed82c46792e1553b5bdc332 (diff) | |
download | ffmpeg-6f5a145be17c1aeb61a0c7f2ef14a8ec537d7d46.tar.gz |
vf_split: give more meaningful names to the output pads
Rename "default" -> "output1", "default2" -> output2.
-rw-r--r-- | libavfilter/vf_split.c | 4 |
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}}, }; |