summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-03-13 09:09:36 +0100
committerAnton Khirnov <anton@khirnov.net>2013-04-09 19:13:19 +0200
commit8114c101607843a86960bd3e0e9c40487dc2a961 (patch)
treedadcd1b9f938365e634cd1c2b08500bd53953cd7 /libavfilter/avfilter.c
parent4d1f31ea44f82adfb2b712534d71e27233a4f785 (diff)
lavfi: add avfilter_get_class().
Useful for examining options, the same as the corresponding functions for the other libs.
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 2fe8dfbe5c..ccf4950c96 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -693,3 +693,8 @@ int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
return filter_frame(link, out);
}
+
+const AVClass *avfilter_get_class(void)
+{
+ return &avfilter_class;
+}