summaryrefslogtreecommitdiff
path: root/libavformat/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 /libavformat/options.c
parentc11fb8288d282da430f598bb029deccbacb31591 (diff)
lavf,lavc,sws: add {avcodec,avformat,sws}_get_class() functions.
Diffstat (limited to 'libavformat/options.c')
-rw-r--r--libavformat/options.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/options.c b/libavformat/options.c
index 5ea0b181cb..43a6dec323 100644
--- a/libavformat/options.c
+++ b/libavformat/options.c
@@ -123,3 +123,8 @@ AVFormatContext *avformat_alloc_context(void)
avformat_get_context_defaults(ic);
return ic;
}
+
+const AVClass *avformat_get_class(void)
+{
+ return &av_format_context_class;
+}