summaryrefslogtreecommitdiff
path: root/libavfilter/af_silencedetect.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/af_silencedetect.c
parentd70a1a507d9e6d504aa76b56b3fdea5197011b2d (diff)
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/af_silencedetect.c')
-rw-r--r--libavfilter/af_silencedetect.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavfilter/af_silencedetect.c b/libavfilter/af_silencedetect.c
index 331ea87d2d..83aa400b9e 100644
--- a/libavfilter/af_silencedetect.c
+++ b/libavfilter/af_silencedetect.c
@@ -49,9 +49,11 @@ static const AVOption silencedetect_options[] = {
};
static const AVClass silencedetect_class = {
- .class_name = "SilenceDetectContext",
+ .class_name = "silencedetect",
.item_name = av_default_item_name,
.option = silencedetect_options,
+ .version = LIBAVUTIL_VERSION_INT,
+ .category = AV_CLASS_CATEGORY_FILTER,
};
static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)