mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-12 02:19:35 +00:00
vf_split: give more meaningful names to the output pads
Rename "default" -> "output1", "default2" -> output2.
This commit is contained in:
parent
de1100a00a
commit
6f5a145be1
@ -58,9 +58,9 @@ AVFilter avfilter_vf_split = {
|
|||||||
.draw_slice = draw_slice,
|
.draw_slice = draw_slice,
|
||||||
.end_frame = end_frame, },
|
.end_frame = end_frame, },
|
||||||
{ .name = NULL}},
|
{ .name = NULL}},
|
||||||
.outputs = (AVFilterPad[]) {{ .name = "default",
|
.outputs = (AVFilterPad[]) {{ .name = "output1",
|
||||||
.type = AVMEDIA_TYPE_VIDEO, },
|
.type = AVMEDIA_TYPE_VIDEO, },
|
||||||
{ .name = "default2",
|
{ .name = "output2",
|
||||||
.type = AVMEDIA_TYPE_VIDEO, },
|
.type = AVMEDIA_TYPE_VIDEO, },
|
||||||
{ .name = NULL}},
|
{ .name = NULL}},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user