summaryrefslogtreecommitdiff
path: root/libavfilter/af_silencedetect.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_silencedetect.c')
-rw-r--r--libavfilter/af_silencedetect.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/libavfilter/af_silencedetect.c b/libavfilter/af_silencedetect.c
index 83aa400b9e..e8bf41bf16 100644
--- a/libavfilter/af_silencedetect.c
+++ b/libavfilter/af_silencedetect.c
@@ -28,6 +28,7 @@
#include "audio.h"
#include "formats.h"
#include "avfilter.h"
+#include "internal.h"
typedef struct {
const AVClass *class;
@@ -48,13 +49,7 @@ static const AVOption silencedetect_options[] = {
{ NULL },
};
-static const AVClass silencedetect_class = {
- .class_name = "silencedetect",
- .item_name = av_default_item_name,
- .option = silencedetect_options,
- .version = LIBAVUTIL_VERSION_INT,
- .category = AV_CLASS_CATEGORY_FILTER,
-};
+AVFILTER_DEFINE_CLASS(silencedetect);
static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
{