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/vf_fade.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/vf_fade.c')
-rw-r--r-- | libavfilter/vf_fade.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libavfilter/vf_fade.c b/libavfilter/vf_fade.c index c73e99f71f..e7e8c87ad9 100644 --- a/libavfilter/vf_fade.c +++ b/libavfilter/vf_fade.c @@ -71,13 +71,7 @@ static const AVOption fade_options[] = { {NULL}, }; -static const AVClass fade_class = { - .class_name = "fade", - .item_name = av_default_item_name, - .option = fade_options, - .version = LIBAVUTIL_VERSION_INT, - .category = AV_CLASS_CATEGORY_FILTER, -}; +AVFILTER_DEFINE_CLASS(fade); static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) { |