From 54101214d89382a24518f21a30080631a981c798 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 16 Jun 2012 12:34:36 +0000 Subject: lavfi: use designated initializers for AVClass While here: - add missing .version and .category, - make .class_name consistent across filters, - align declarations. Signed-off-by: Paul B Mahol --- libavfilter/avfiltergraph.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavfilter/avfiltergraph.c') diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 1af77e4a14..a4ad4da3ce 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -38,6 +38,7 @@ static const AVClass filtergraph_class = { .class_name = "AVFilterGraph", .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, + .category = AV_CLASS_CATEGORY_FILTER, }; AVFilterGraph *avfilter_graph_alloc(void) -- cgit v1.2.3