From a5c7525bcb1fcbcd6de2240f6417cc4925576632 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 28 May 2012 12:50:06 +0200 Subject: set some categories of some AVClass structs Please help setting the category for all remaining AVClasses Signed-off-by: Michael Niedermayer --- libavfilter/af_aformat.c | 1 + libavfilter/avfilter.c | 1 + libavfilter/buffersrc.c | 1 + 3 files changed, 3 insertions(+) (limited to 'libavfilter') diff --git a/libavfilter/af_aformat.c b/libavfilter/af_aformat.c index c602f5ddce..35e7db880a 100644 --- a/libavfilter/af_aformat.c +++ b/libavfilter/af_aformat.c @@ -58,6 +58,7 @@ static const AVClass aformat_class = { .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, + .category = AV_CLASS_CATEGORY_FILTER, }; #define PARSE_FORMATS(str, type, list, add_to_list, get_fmt, none, desc) \ diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 38be0e613b..0c3e7edb11 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -376,6 +376,7 @@ static const AVClass avfilter_class = { .class_name = "AVFilter", .item_name = filter_name, .version = LIBAVUTIL_VERSION_INT, + .category = AV_CLASS_CATEGORY_FILTER, }; int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name) diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c index d4f74127e6..0c60caf942 100644 --- a/libavfilter/buffersrc.c +++ b/libavfilter/buffersrc.c @@ -258,6 +258,7 @@ static const AVClass abuffer_class = { .item_name = av_default_item_name, .option = audio_options, .version = LIBAVUTIL_VERSION_INT, + .category = AV_CLASS_CATEGORY_FILTER, }; static av_cold int init_audio(AVFilterContext *ctx, const char *args, void *opaque) -- cgit v1.2.3