diff options
author | James Almer <jamrial@gmail.com> | 2017-11-01 20:05:09 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-01 20:05:09 -0300 |
commit | e621b1ca646a2f268797adc3194b694a852548d2 (patch) | |
tree | 3c9c029dd56f3abc6e7c28ec55566b5c65a7ef2c /libavutil | |
parent | 3524c92950832705210e50eeafad002fe2d58be5 (diff) | |
parent | 97cfe1d8bd1968143e2ba9aa46ebe9504a835e24 (diff) | |
download | ffmpeg-e621b1ca646a2f268797adc3194b694a852548d2.tar.gz |
Merge commit '97cfe1d8bd1968143e2ba9aa46ebe9504a835e24'
* commit '97cfe1d8bd1968143e2ba9aa46ebe9504a835e24':
Convert all AVClass struct declarations to designated initializers.
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/eval.c | 9 | ||||
-rw-r--r-- | libavutil/file.c | 8 | ||||
-rw-r--r-- | libavutil/file_open.c | 8 | ||||
-rw-r--r-- | libavutil/imgutils.c | 7 | ||||
-rw-r--r-- | libavutil/tests/opt.c | 6 |
5 files changed, 27 insertions, 11 deletions
diff --git a/libavutil/eval.c b/libavutil/eval.c index b5f4ea2409..5da9a6d83b 100644 --- a/libavutil/eval.c +++ b/libavutil/eval.c @@ -57,7 +57,14 @@ typedef struct Parser { double *var; } Parser; -static const AVClass eval_class = { "Eval", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT, offsetof(Parser,log_offset), offsetof(Parser,log_ctx) }; +static const AVClass eval_class = { + .class_name = "Eval", + .item_name = av_default_item_name, + .option = NULL, + .version = LIBAVUTIL_VERSION_INT, + .log_level_offset_offset = offsetof(Parser, log_offset), + .parent_log_context_offset = offsetof(Parser, log_ctx), +}; static const struct { double bin_val; diff --git a/libavutil/file.c b/libavutil/file.c index 7bdf6cde84..24a86c3f35 100644 --- a/libavutil/file.c +++ b/libavutil/file.c @@ -42,8 +42,12 @@ typedef struct FileLogContext { } FileLogContext; static const AVClass file_log_ctx_class = { - "FILE", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT, - offsetof(FileLogContext, log_offset), offsetof(FileLogContext, log_ctx) + .class_name = "FILE", + .item_name = av_default_item_name, + .option = NULL, + .version = LIBAVUTIL_VERSION_INT, + .log_level_offset_offset = offsetof(FileLogContext, log_offset), + .parent_log_context_offset = offsetof(FileLogContext, log_ctx), }; int av_file_map(const char *filename, uint8_t **bufptr, size_t *size, diff --git a/libavutil/file_open.c b/libavutil/file_open.c index 34070d933b..258bb3074e 100644 --- a/libavutil/file_open.c +++ b/libavutil/file_open.c @@ -99,8 +99,12 @@ typedef struct FileLogContext { } FileLogContext; static const AVClass file_log_ctx_class = { - "TEMPFILE", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT, - offsetof(FileLogContext, log_offset), offsetof(FileLogContext, log_ctx) + .class_name = "TEMPFILE", + .item_name = av_default_item_name, + .option = NULL, + .version = LIBAVUTIL_VERSION_INT, + .log_level_offset_offset = offsetof(FileLogContext, log_offset), + .parent_log_context_offset = offsetof(FileLogContext, log_ctx), }; int avpriv_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx) diff --git a/libavutil/imgutils.c b/libavutil/imgutils.c index 5005178804..5af4fc20a0 100644 --- a/libavutil/imgutils.c +++ b/libavutil/imgutils.c @@ -242,9 +242,10 @@ typedef struct ImgUtils { } ImgUtils; static const AVClass imgutils_class = { - .class_name = "IMGUTILS", - .item_name = av_default_item_name, - .version = LIBAVUTIL_VERSION_INT, + .class_name = "IMGUTILS", + .item_name = av_default_item_name, + .option = NULL, + .version = LIBAVUTIL_VERSION_INT, .log_level_offset_offset = offsetof(ImgUtils, log_offset), .parent_log_context_offset = offsetof(ImgUtils, log_ctx), }; diff --git a/libavutil/tests/opt.c b/libavutil/tests/opt.c index 568eb45668..f4cfa590aa 100644 --- a/libavutil/tests/opt.c +++ b/libavutil/tests/opt.c @@ -98,9 +98,9 @@ static const char *test_get_name(void *ctx) } static const AVClass test_class = { - "TestContext", - test_get_name, - test_options + .class_name = "TestContext", + .item_name = test_get_name, + .option = test_options, }; static void log_callback_help(void *ptr, int level, const char *fmt, va_list vl) |