summaryrefslogtreecommitdiff
path: root/libavfilter/vf_ass.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-06-16 12:34:36 +0000
committerPaul B Mahol <onemda@gmail.com>2012-06-17 11:10:10 +0000
commit54101214d89382a24518f21a30080631a981c798 (patch)
treeea0a997aaf725ecb53b5df15d5496f48c556fd10 /libavfilter/vf_ass.c
parentd70a1a507d9e6d504aa76b56b3fdea5197011b2d (diff)
downloadffmpeg-54101214d89382a24518f21a30080631a981c798.tar.gz
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 <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_ass.c')
-rw-r--r--libavfilter/vf_ass.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libavfilter/vf_ass.c b/libavfilter/vf_ass.c
index d0e204939d..69f4ed37a1 100644
--- a/libavfilter/vf_ass.c
+++ b/libavfilter/vf_ass.c
@@ -55,9 +55,11 @@ static const AVOption ass_options[] = {
};
static const AVClass ass_class = {
- "AssContext",
- av_default_item_name,
- ass_options
+ .class_name = "ass",
+ .item_name = av_default_item_name,
+ .option = ass_options,
+ .version = LIBAVUTIL_VERSION_INT,
+ .category = AV_CLASS_CATEGORY_FILTER,
};
/* libass supports a log level ranging from 0 to 7 */