summaryrefslogtreecommitdiff
path: root/libavfilter/src_movie.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-22 14:33:09 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-06-22 23:11:43 +0200
commitc17808cebd2b9cf734dfa7f652ed49a3b3289386 (patch)
tree809dfdeee9db61d718252717b8f21f423e067417 /libavfilter/src_movie.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/src_movie.c')
-rw-r--r--libavfilter/src_movie.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavfilter/src_movie.c b/libavfilter/src_movie.c
index f793ad08d4..1b83ecb15d 100644
--- a/libavfilter/src_movie.c
+++ b/libavfilter/src_movie.c
@@ -80,13 +80,7 @@ static const AVOption movie_options[]= {
{NULL},
};
-static const AVClass movie_class = {
- .class_name = "movie",
- .item_name = av_default_item_name,
- .option = movie_options,
- .version = LIBAVUTIL_VERSION_INT,
- .category = AV_CLASS_CATEGORY_FILTER,
-};
+AVFILTER_DEFINE_CLASS(movie);
static av_cold int movie_common_init(AVFilterContext *ctx, const char *args, void *opaque,
enum AVMediaType type)