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_mptestsrc.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'libavfilter/vsrc_mptestsrc.c') diff --git a/libavfilter/vsrc_mptestsrc.c b/libavfilter/vsrc_mptestsrc.c index 485d44ec9b..c0b9e436fe 100644 --- a/libavfilter/vsrc_mptestsrc.c +++ b/libavfilter/vsrc_mptestsrc.c @@ -28,6 +28,7 @@ #include "libavutil/parseutils.h" #include "libavutil/pixdesc.h" #include "avfilter.h" +#include "internal.h" #include "formats.h" #include "video.h" @@ -84,13 +85,7 @@ static const AVOption mptestsrc_options[]= { { NULL }, }; -static const AVClass mptestsrc_class = { - .class_name = "mptestsrc", - .item_name = av_default_item_name, - .option = mptestsrc_options, - .version = LIBAVUTIL_VERSION_INT, - .category = AV_CLASS_CATEGORY_FILTER, -}; +AVFILTER_DEFINE_CLASS(mptestsrc); static double c[64]; -- cgit v1.2.3