diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-22 14:33:09 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-22 23:11:43 +0200 |
commit | c17808cebd2b9cf734dfa7f652ed49a3b3289386 (patch) | |
tree | 809dfdeee9db61d718252717b8f21f423e067417 /libavfilter/vsrc_life.c | |
parent | 012aa12a6bff8333da2165256bae312f6844ab65 (diff) | |
download | ffmpeg-c17808cebd2b9cf734dfa7f652ed49a3b3289386.tar.gz |
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_life.c')
-rw-r--r-- | libavfilter/vsrc_life.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libavfilter/vsrc_life.c b/libavfilter/vsrc_life.c index 5b4dc99576..dd35f2c4b3 100644 --- a/libavfilter/vsrc_life.c +++ b/libavfilter/vsrc_life.c @@ -32,6 +32,7 @@ #include "libavutil/parseutils.h" #include "libavutil/random_seed.h" #include "avfilter.h" +#include "internal.h" #include "formats.h" #include "video.h" @@ -97,13 +98,7 @@ static const AVOption life_options[] = { { NULL }, }; -static const AVClass life_class = { - .class_name = "life", - .item_name = av_default_item_name, - .option = life_options, - .version = LIBAVUTIL_VERSION_INT, - .category = AV_CLASS_CATEGORY_FILTER, -}; +AVFILTER_DEFINE_CLASS(life); static int parse_rule(uint16_t *born_rule, uint16_t *stay_rule, const char *rule_str, void *log_ctx) |