summaryrefslogtreecommitdiff
path: root/libavfilter/buffersink.c
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2013-03-10 19:59:48 +0100
committerNicolas George <nicolas.george@normalesup.org>2013-03-11 19:00:49 +0100
commit73b40e2eb6826c5bd08a233e6d2e25b55f9113da (patch)
treea3a922614391d9599570757220cc9135f08af88d /libavfilter/buffersink.c
parent1123080d2ecf982b235e643360761d7d01cc617c (diff)
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.
Diffstat (limited to 'libavfilter/buffersink.c')
-rw-r--r--libavfilter/buffersink.c93
1 files changed, 47 insertions, 46 deletions
diff --git a/libavfilter/buffersink.c b/libavfilter/buffersink.c
index 35607850f0..a3e3095590 100644
--- a/libavfilter/buffersink.c
+++ b/libavfilter/buffersink.c
@@ -389,48 +389,6 @@ static int vsink_query_formats(AVFilterContext *ctx)
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)
{
int nb_layouts = 0, nb_counts = 0, i;
@@ -513,6 +471,27 @@ static int asink_query_formats(AVFilterContext *ctx)
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[] = {
{
.name = "default",
@@ -533,22 +512,44 @@ AVFilter avfilter_asink_ffabuffersink = {
.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[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
.filter_frame = filter_frame,
},
- { NULL },
+ { NULL }
};
AVFilter avfilter_asink_abuffersink = {
.name = "abuffersink",
.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,
.uninit = uninit,
- .priv_size = sizeof(BufferSinkContext),
+
.query_formats = asink_query_formats,
- .inputs = abuffersink_inputs,
- .outputs = NULL,
+ .inputs = abuffersink_inputs,
+ .outputs = NULL,
};