mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
imgutils: Use designated initializers for AVClass
More readable and less breakable.
This commit is contained in:
parent
e4bfc726cd
commit
7c91b3021c
@ -236,11 +236,21 @@ typedef struct ImgUtils {
|
||||
void *log_ctx;
|
||||
} ImgUtils;
|
||||
|
||||
static const AVClass imgutils_class = { "IMGUTILS", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT, offsetof(ImgUtils, log_offset), offsetof(ImgUtils, log_ctx) };
|
||||
static const AVClass imgutils_class = {
|
||||
.class_name = "IMGUTILS",
|
||||
.item_name = av_default_item_name,
|
||||
.version = LIBAVUTIL_VERSION_INT,
|
||||
.log_level_offset_offset = offsetof(ImgUtils, log_offset),
|
||||
.parent_log_context_offset = offsetof(ImgUtils, log_ctx),
|
||||
};
|
||||
|
||||
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
|
||||
{
|
||||
ImgUtils imgutils = { &imgutils_class, log_offset, log_ctx };
|
||||
ImgUtils imgutils = {
|
||||
.class = &imgutils_class,
|
||||
.log_offset = log_offset,
|
||||
.log_ctx = log_ctx,
|
||||
};
|
||||
|
||||
if ((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user