lavfi/concat: switch to an AVOptions-based system.

This commit is contained in:
Clément Bœsch
2013-04-11 01:10:40 +02:00
parent 944ad46182
commit 35a27402ad
3 changed files with 3 additions and 4 deletions

View File

@@ -409,8 +409,6 @@ static av_cold void uninit(AVFilterContext *ctx)
av_free(cat->in);
}
static const char *const shorthand[] = { NULL };
AVFilter avfilter_avf_concat = {
.name = "concat",
.description = NULL_IF_CONFIG_SMALL("Concatenate audio and video streams."),
@@ -421,5 +419,4 @@ AVFilter avfilter_avf_concat = {
.inputs = NULL,
.outputs = NULL,
.priv_class = &concat_class,
.shorthand = shorthand,
};