summaryrefslogtreecommitdiff
path: root/libswscale/options.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-23 07:23:52 +0200
committerAnton Khirnov <anton@khirnov.net>2011-09-03 20:53:35 +0200
commitfb4ca26bdbddfbbf21a2a212485d225438b4b234 (patch)
tree983d095575b393167fd7df1f2bd14e9f0ba9db39 /libswscale/options.c
parentc11fb8288d282da430f598bb029deccbacb31591 (diff)
lavf,lavc,sws: add {avcodec,avformat,sws}_get_class() functions.
Diffstat (limited to 'libswscale/options.c')
-rw-r--r--libswscale/options.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libswscale/options.c b/libswscale/options.c
index ecd0ecd53a..d550629239 100644
--- a/libswscale/options.c
+++ b/libswscale/options.c
@@ -67,3 +67,8 @@ static const AVOption options[] = {
};
const AVClass sws_context_class = { "SWScaler", sws_context_to_name, options };
+
+const AVClass *sws_get_class(void)
+{
+ return &sws_context_class;
+}