You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
lavfi/buffersink: move the filter structures at the end.
Also apply a few cosmetic fixes (spaces, trailing comma) to help match them with the fork's implementation.
This commit is contained in:
@ -389,48 +389,6 @@ static int vsink_query_formats(AVFilterContext *ctx)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const AVFilterPad ffbuffersink_inputs[] = {
|
|
||||||
{
|
|
||||||
.name = "default",
|
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
|
||||||
.filter_frame = filter_frame,
|
|
||||||
},
|
|
||||||
{ NULL },
|
|
||||||
};
|
|
||||||
|
|
||||||
AVFilter avfilter_vsink_ffbuffersink = {
|
|
||||||
.name = "ffbuffersink",
|
|
||||||
.description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
|
|
||||||
.priv_size = sizeof(BufferSinkContext),
|
|
||||||
.init_opaque = vsink_init,
|
|
||||||
.uninit = uninit,
|
|
||||||
|
|
||||||
.query_formats = vsink_query_formats,
|
|
||||||
.inputs = ffbuffersink_inputs,
|
|
||||||
.outputs = NULL,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const AVFilterPad buffersink_inputs[] = {
|
|
||||||
{
|
|
||||||
.name = "default",
|
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
|
||||||
.filter_frame = filter_frame,
|
|
||||||
},
|
|
||||||
{ NULL },
|
|
||||||
};
|
|
||||||
|
|
||||||
AVFilter avfilter_vsink_buffersink = {
|
|
||||||
.name = "buffersink",
|
|
||||||
.description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
|
|
||||||
.priv_size = sizeof(BufferSinkContext),
|
|
||||||
.init_opaque = vsink_init,
|
|
||||||
.uninit = uninit,
|
|
||||||
|
|
||||||
.query_formats = vsink_query_formats,
|
|
||||||
.inputs = buffersink_inputs,
|
|
||||||
.outputs = NULL,
|
|
||||||
};
|
|
||||||
|
|
||||||
static int64_t *concat_channels_lists(const int64_t *layouts, const int *counts)
|
static int64_t *concat_channels_lists(const int64_t *layouts, const int *counts)
|
||||||
{
|
{
|
||||||
int nb_layouts = 0, nb_counts = 0, i;
|
int nb_layouts = 0, nb_counts = 0, i;
|
||||||
@ -513,6 +471,27 @@ static int asink_query_formats(AVFilterContext *ctx)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const AVFilterPad ffbuffersink_inputs[] = {
|
||||||
|
{
|
||||||
|
.name = "default",
|
||||||
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
|
.filter_frame = filter_frame,
|
||||||
|
},
|
||||||
|
{ NULL },
|
||||||
|
};
|
||||||
|
|
||||||
|
AVFilter avfilter_vsink_ffbuffersink = {
|
||||||
|
.name = "ffbuffersink",
|
||||||
|
.description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
|
||||||
|
.priv_size = sizeof(BufferSinkContext),
|
||||||
|
.init_opaque = vsink_init,
|
||||||
|
.uninit = uninit,
|
||||||
|
|
||||||
|
.query_formats = vsink_query_formats,
|
||||||
|
.inputs = ffbuffersink_inputs,
|
||||||
|
.outputs = NULL,
|
||||||
|
};
|
||||||
|
|
||||||
static const AVFilterPad ffabuffersink_inputs[] = {
|
static const AVFilterPad ffabuffersink_inputs[] = {
|
||||||
{
|
{
|
||||||
.name = "default",
|
.name = "default",
|
||||||
@ -533,22 +512,44 @@ AVFilter avfilter_asink_ffabuffersink = {
|
|||||||
.outputs = NULL,
|
.outputs = NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const AVFilterPad buffersink_inputs[] = {
|
||||||
|
{
|
||||||
|
.name = "default",
|
||||||
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
|
.filter_frame = filter_frame,
|
||||||
|
},
|
||||||
|
{ NULL }
|
||||||
|
};
|
||||||
|
|
||||||
|
AVFilter avfilter_vsink_buffersink = {
|
||||||
|
.name = "buffersink",
|
||||||
|
.description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
|
||||||
|
.priv_size = sizeof(BufferSinkContext),
|
||||||
|
.init_opaque = vsink_init,
|
||||||
|
.uninit = uninit,
|
||||||
|
|
||||||
|
.query_formats = vsink_query_formats,
|
||||||
|
.inputs = buffersink_inputs,
|
||||||
|
.outputs = NULL,
|
||||||
|
};
|
||||||
|
|
||||||
static const AVFilterPad abuffersink_inputs[] = {
|
static const AVFilterPad abuffersink_inputs[] = {
|
||||||
{
|
{
|
||||||
.name = "default",
|
.name = "default",
|
||||||
.type = AVMEDIA_TYPE_AUDIO,
|
.type = AVMEDIA_TYPE_AUDIO,
|
||||||
.filter_frame = filter_frame,
|
.filter_frame = filter_frame,
|
||||||
},
|
},
|
||||||
{ NULL },
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
AVFilter avfilter_asink_abuffersink = {
|
AVFilter avfilter_asink_abuffersink = {
|
||||||
.name = "abuffersink",
|
.name = "abuffersink",
|
||||||
.description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them available to the end of the filter graph."),
|
.description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them available to the end of the filter graph."),
|
||||||
|
.priv_size = sizeof(BufferSinkContext),
|
||||||
.init_opaque = asink_init,
|
.init_opaque = asink_init,
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
.priv_size = sizeof(BufferSinkContext),
|
|
||||||
.query_formats = asink_query_formats,
|
.query_formats = asink_query_formats,
|
||||||
.inputs = abuffersink_inputs,
|
.inputs = abuffersink_inputs,
|
||||||
.outputs = NULL,
|
.outputs = NULL,
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user