From 6b9446e93296ed236d497fe3f493d8956571f888 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 19 Jun 2012 14:54:58 +0000 Subject: [PATCH] avidec: add .category While here make .class_name consistent with other AVClass. Signed-off-by: Paul B Mahol --- libavformat/avidec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 2ad902af71..0ec53489d6 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -84,10 +84,11 @@ static const AVOption options[] = { }; static const AVClass demuxer_class = { - .class_name = "AVI demuxer", + .class_name = "avi", .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT, + .category = AV_CLASS_CATEGORY_DEMUXER, };