diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 11:45:25 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 11:51:48 +0200 |
commit | cb2327e88d662e3c1da812bc18e9c504d068dd74 (patch) | |
tree | 4afd44a81fe817bbb07e668d063cef1461bf5088 /libavfilter/f_select.c | |
parent | bca4cafaf2d49c8a9c4bada17606e1f20da94d2d (diff) | |
download | ffmpeg-cb2327e88d662e3c1da812bc18e9c504d068dd74.tar.gz |
lavfi/aselect: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/f_select.c')
-rw-r--r-- | libavfilter/f_select.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/f_select.c b/libavfilter/f_select.c index e2c4ef719a..b34196dee3 100644 --- a/libavfilter/f_select.c +++ b/libavfilter/f_select.c @@ -388,8 +388,6 @@ static int query_formats(AVFilterContext *ctx) return 0; } -static const char *const shorthand[] = { "expr", NULL }; - #if CONFIG_ASELECT_FILTER #define OFFSET(x) offsetof(SelectContext, x) @@ -445,7 +443,6 @@ AVFilter avfilter_af_aselect = { .inputs = avfilter_af_aselect_inputs, .outputs = avfilter_af_aselect_outputs, .priv_class = &aselect_class, - .shorthand = shorthand, }; #endif /* CONFIG_ASELECT_FILTER */ |