summaryrefslogtreecommitdiff
path: root/libavfilter/avf_concat.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-11 01:10:40 +0200
committerClément Bœsch <ubitux@gmail.com>2013-04-11 11:51:47 +0200
commit35a27402ade928d78f8b7a89c8b4e8bf8b473215 (patch)
tree81a21fdb7c0a09937ade50ee9d2d0f102b877ffd /libavfilter/avf_concat.c
parent944ad46182483ff52573ec3c827c86058b225d16 (diff)
lavfi/concat: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/avf_concat.c')
-rw-r--r--libavfilter/avf_concat.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/avf_concat.c b/libavfilter/avf_concat.c
index 2b3640b1b0..8312efa514 100644
--- a/libavfilter/avf_concat.c
+++ b/libavfilter/avf_concat.c
@@ -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,
};