Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-22 16:33:09 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-06-23 01:11:43 +0400
commitc17808cebd2b9cf734dfa7f652ed49a3b3289386 (patch)
tree809dfdeee9db61d718252717b8f21f423e067417 /libavfilter/vsrc_cellauto.c
parent012aa12a6bff8333da2165256bae312f6844ab65 (diff)
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.
Diffstat (limited to 'libavfilter/vsrc_cellauto.c')
-rw-r--r--libavfilter/vsrc_cellauto.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/libavfilter/vsrc_cellauto.c b/libavfilter/vsrc_cellauto.c
index 117a660867..1fd43ee706 100644
--- a/libavfilter/vsrc_cellauto.c
+++ b/libavfilter/vsrc_cellauto.c
@@ -31,6 +31,7 @@
#include "libavutil/parseutils.h"
#include "libavutil/random_seed.h"
#include "avfilter.h"
+#include "internal.h"
#include "formats.h"
#include "video.h"
@@ -78,13 +79,7 @@ static const AVOption cellauto_options[] = {
{ NULL },
};
-static const AVClass cellauto_class = {
- .class_name = "cellauto",
- .item_name = av_default_item_name,
- .option = cellauto_options,
- .version = LIBAVUTIL_VERSION_INT,
- .category = AV_CLASS_CATEGORY_FILTER,
-};
+AVFILTER_DEFINE_CLASS(cellauto);
#ifdef DEBUG
static void show_cellauto_row(AVFilterContext *ctx)