diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2013-04-11 01:06:16 +0200 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@gmail.com> | 2013-04-11 01:25:02 +0200 |
commit | 6afed2aec129f42027d2ec3167c34f7b9d4e1fd6 (patch) | |
tree | 994b5cb50561f201a8c9d28c9145811b484da96b /libavfilter/vf_blend.c | |
parent | ab6091f8e21df7280f2b50fd6226bbc130fb060a (diff) | |
download | ffmpeg-6afed2aec129f42027d2ec3167c34f7b9d4e1fd6.tar.gz |
lavfi/blend: switch to AVOption-based system
Diffstat (limited to 'libavfilter/vf_blend.c')
-rw-r--r-- | libavfilter/vf_blend.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c index 434b470561..d279e3a836 100644 --- a/libavfilter/vf_blend.c +++ b/libavfilter/vf_blend.c @@ -453,8 +453,6 @@ static const AVFilterPad blend_outputs[] = { { NULL } }; -static const char *const shorthand[] = { NULL }; - AVFilter avfilter_vf_blend = { .name = "blend", .description = NULL_IF_CONFIG_SMALL("Blend two video frames into each other."), @@ -465,5 +463,4 @@ AVFilter avfilter_vf_blend = { .inputs = blend_inputs, .outputs = blend_outputs, .priv_class = &blend_class, - .shorthand = shorthand, }; |