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/vsrc_mandelbrot.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'libavfilter/vsrc_mandelbrot.c') diff --git a/libavfilter/vsrc_mandelbrot.c b/libavfilter/vsrc_mandelbrot.c index 26b392daad..7bf64d9bcc 100644 --- a/libavfilter/vsrc_mandelbrot.c +++ b/libavfilter/vsrc_mandelbrot.c @@ -29,6 +29,7 @@ #include "avfilter.h" #include "formats.h" #include "video.h" +#include "internal.h" #include "libavutil/imgutils.h" #include "libavutil/opt.h" #include "libavutil/parseutils.h" @@ -105,13 +106,7 @@ static const AVOption mandelbrot_options[] = { {NULL}, }; -static const AVClass mandelbrot_class = { - .class_name = "mandelbrot", - .item_name = av_default_item_name, - .option = mandelbrot_options, - .version = LIBAVUTIL_VERSION_INT, - .category = AV_CLASS_CATEGORY_FILTER, -}; +AVFILTER_DEFINE_CLASS(mandelbrot); static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) { -- cgit v1.2.3