summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-13 00:45:30 +0200
committerClément Bœsch <ubitux@gmail.com>2013-04-13 00:45:30 +0200
commitdcea58502c9b7992e284233f2c5ba75c51456ad3 (patch)
treea20205d6632f5350eb8d4a3af0ef1d09a9741907 /libavfilter/avfilter.h
parent8f99494c1ca5ef0bed58ec1422ceeded545f2d4d (diff)
lavfi: drop now unused shorthand field from AVFilter.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 44143b010a..0b970d0486 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 */