diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-06-16 12:34:36 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-06-17 11:10:10 +0000 |
commit | 54101214d89382a24518f21a30080631a981c798 (patch) | |
tree | ea0a997aaf725ecb53b5df15d5496f48c556fd10 /libavfilter/avfilter.c | |
parent | d70a1a507d9e6d504aa76b56b3fdea5197011b2d (diff) | |
download | ffmpeg-54101214d89382a24518f21a30080631a981c798.tar.gz |
lavfi: use designated initializers for AVClass
While here:
- add missing .version and .category,
- make .class_name consistent across filters,
- align declarations.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 6c2aaa3549..7a395c22fe 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -426,7 +426,7 @@ static const AVClass avfilter_class = { .class_name = "AVFilter", .item_name = default_filter_name, .version = LIBAVUTIL_VERSION_INT, - .category = AV_CLASS_CATEGORY_FILTER, + .category = AV_CLASS_CATEGORY_FILTER, }; int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name) |