From 5fe5bde60a88db19d20adc16888dd3812c348f15 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 27 May 2013 11:10:39 +0000 Subject: [PATCH] lavfi/join: make use of AVFILTER_DEFINE_CLASS Signed-off-by: Paul B Mahol --- libavfilter/af_join.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c index b8e9e85c4f..11978bd97e 100644 --- a/libavfilter/af_join.c +++ b/libavfilter/af_join.c @@ -77,12 +77,7 @@ static const AVOption join_options[] = { { NULL }, }; -static const AVClass join_class = { - .class_name = "join filter", - .item_name = av_default_item_name, - .option = join_options, - .version = LIBAVUTIL_VERSION_INT, -}; +AVFILTER_DEFINE_CLASS(join); static int filter_frame(AVFilterLink *link, AVFrame *frame) {