diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 01:01:49 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 01:04:45 +0200 |
commit | 7668b6832d3c1fd5555be5f4cf6f8e9930dd9c4e (patch) | |
tree | 685eb30193d2d5386d968c00487ee569d07c256c /libavfilter/vf_idet.c | |
parent | b2d589188f36cc69ffb8148810dc706d82dcebf6 (diff) | |
download | ffmpeg-7668b6832d3c1fd5555be5f4cf6f8e9930dd9c4e.tar.gz |
lavfi/idet: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_idet.c')
-rw-r--r-- | libavfilter/vf_idet.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c index 275302f16c..bef7f3ee3d 100644 --- a/libavfilter/vf_idet.c +++ b/libavfilter/vf_idet.c @@ -304,8 +304,6 @@ static const AVFilterPad idet_outputs[] = { { NULL } }; -static const char *const shorthand[] = { "intl_thres", "prog_thres", NULL }; - AVFilter avfilter_vf_idet = { .name = "idet", .description = NULL_IF_CONFIG_SMALL("Interlace detect Filter."), @@ -317,5 +315,4 @@ AVFilter avfilter_vf_idet = { .inputs = idet_inputs, .outputs = idet_outputs, .priv_class = &idet_class, - .shorthand = shorthand, }; |