[FFmpeg-cvslog] lavfi: drop now unused shorthand field from AVFilter.
Clément Bœsch
git at videolan.org
Sat Apr 13 00:47:30 CEST 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sat Apr 13 00:45:30 2013 +0200| [dcea58502c9b7992e284233f2c5ba75c51456ad3] | committer: Clément Bœsch
lavfi: drop now unused shorthand field from AVFilter.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dcea58502c9b7992e284233f2c5ba75c51456ad3
---
libavfilter/avfilter.c | 2 +-
libavfilter/avfilter.h | 9 ---------
2 files changed, 1 insertion(+), 10 deletions(-)
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 211344c..f392613 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -606,7 +606,7 @@ void avfilter_free(AVFilterContext *filter)
avfilter_link_free(&link);
}
- if (filter->filter->priv_class || filter->filter->shorthand)
+ if (filter->filter->priv_class)
av_opt_free(filter->priv);
av_freep(&filter->name);
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 44143b0..0b970d0 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -518,15 +518,6 @@ typedef struct AVFilter {
* used for providing binary data.
*/
int (*init_opaque)(AVFilterContext *ctx, void *opaque);
-
- /**
- * Shorthand syntax for init arguments.
- * If this field is set (even to an empty list), just before init the
- * private class will be set and the arguments string will be parsed
- * using av_opt_set_from_string() with "=" and ":" delimiters, and
- * av_opt_free() will be called just after uninit.
- */
- const char *const *shorthand;
} AVFilter;
/** An instance of a filter */
More information about the ffmpeg-cvslog
mailing list