From c17808cebd2b9cf734dfa7f652ed49a3b3289386 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 22 Jun 2012 14:33:09 +0200 Subject: lavfi: define macro AVFILTER_DEFINE_CLASS The macro can be used to define consistently the internal class of a filter, save some typing and factorize. --- libavfilter/af_amerge.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'libavfilter/af_amerge.c') diff --git a/libavfilter/af_amerge.c b/libavfilter/af_amerge.c index bd0437d01b..e71c55f8bd 100644 --- a/libavfilter/af_amerge.c +++ b/libavfilter/af_amerge.c @@ -52,13 +52,7 @@ static const AVOption amerge_options[] = { {0} }; -static const AVClass amerge_class = { - .class_name = "amerge", - .item_name = av_default_item_name, - .option = amerge_options, - .version = LIBAVUTIL_VERSION_INT, - .category = AV_CLASS_CATEGORY_FILTER, -}; +AVFILTER_DEFINE_CLASS(amerge); static av_cold void uninit(AVFilterContext *ctx) { -- cgit v1.2.3