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/file.c | |
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/file.c')
-rw-r--r-- | libavutil/file.c | 8 |
1 files changed, 6 insertions, 2 deletions
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, |