diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 01:03:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 01:03:08 +0200 |
commit | 72ce979f109f7fcfcb44a0fe12ea025b89b80dfc (patch) | |
tree | fbd7e958fbda545cb37e2c067e975ec9746b1115 /libavfilter/vf_il.c | |
parent | c2696dabbbc6674e31b16d4e06b81e647e907d11 (diff) | |
parent | 531158e6becb6f822280a12277b6627a47e49b6a (diff) | |
download | ffmpeg-72ce979f109f7fcfcb44a0fe12ea025b89b80dfc.tar.gz |
Merge remote-tracking branch 'mbouron/shorthand-cleanup'
* mbouron/shorthand-cleanup:
lavfi/kerndeint: switch to AVOption-based system
lavfi/il: switch to AVOption-based system
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_il.c')
-rw-r--r-- | libavfilter/vf_il.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_il.c b/libavfilter/vf_il.c index 7eee398ea0..904be8c1c4 100644 --- a/libavfilter/vf_il.c +++ b/libavfilter/vf_il.c @@ -204,8 +204,6 @@ static const AVFilterPad outputs[] = { { NULL } }; -static const char *const shorthand[] = { NULL }; - AVFilter avfilter_vf_il = { .name = "il", .description = NULL_IF_CONFIG_SMALL("Deinterleave or interleave fields."), @@ -214,5 +212,4 @@ AVFilter avfilter_vf_il = { .inputs = inputs, .outputs = outputs, .priv_class = &il_class, - .shorthand = shorthand, }; |