mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
buffersink: remove shorthand
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f1e62af0e0
commit
4a88989254
@ -504,7 +504,6 @@ static const AVOption abuffersink_options[] = {
|
|||||||
{ NULL },
|
{ NULL },
|
||||||
};
|
};
|
||||||
#undef FLAGS
|
#undef FLAGS
|
||||||
static const char *const shorthand[] = { NULL };
|
|
||||||
|
|
||||||
AVFILTER_DEFINE_CLASS(buffersink);
|
AVFILTER_DEFINE_CLASS(buffersink);
|
||||||
AVFILTER_DEFINE_CLASS(abuffersink);
|
AVFILTER_DEFINE_CLASS(abuffersink);
|
||||||
@ -530,7 +529,6 @@ AVFilter avfilter_vsink_ffbuffersink = {
|
|||||||
.description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
|
.description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
|
||||||
.priv_size = sizeof(BufferSinkContext),
|
.priv_size = sizeof(BufferSinkContext),
|
||||||
.priv_class = &ffbuffersink_class,
|
.priv_class = &ffbuffersink_class,
|
||||||
.shorthand = shorthand,
|
|
||||||
.init_opaque = vsink_init,
|
.init_opaque = vsink_init,
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
|
|
||||||
@ -555,7 +553,6 @@ AVFilter avfilter_asink_ffabuffersink = {
|
|||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
.priv_size = sizeof(BufferSinkContext),
|
.priv_size = sizeof(BufferSinkContext),
|
||||||
.priv_class = &ffabuffersink_class,
|
.priv_class = &ffabuffersink_class,
|
||||||
.shorthand = shorthand,
|
|
||||||
.query_formats = asink_query_formats,
|
.query_formats = asink_query_formats,
|
||||||
.inputs = ffabuffersink_inputs,
|
.inputs = ffabuffersink_inputs,
|
||||||
.outputs = NULL,
|
.outputs = NULL,
|
||||||
@ -576,7 +573,6 @@ AVFilter avfilter_vsink_buffer = {
|
|||||||
.description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
|
.description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
|
||||||
.priv_size = sizeof(BufferSinkContext),
|
.priv_size = sizeof(BufferSinkContext),
|
||||||
.priv_class = &buffersink_class,
|
.priv_class = &buffersink_class,
|
||||||
.shorthand = shorthand,
|
|
||||||
.init_opaque = vsink_init,
|
.init_opaque = vsink_init,
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
|
|
||||||
@ -598,7 +594,6 @@ AVFilter avfilter_asink_abuffer = {
|
|||||||
.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_class = &abuffersink_class,
|
.priv_class = &abuffersink_class,
|
||||||
.shorthand = shorthand,
|
|
||||||
.priv_size = sizeof(BufferSinkContext),
|
.priv_size = sizeof(BufferSinkContext),
|
||||||
.init_opaque = asink_init,
|
.init_opaque = asink_init,
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
|
Loading…
Reference in New Issue
Block a user