Commit 7238ed6c authored by Paul B Mahol's avatar Paul B Mahol

avidec: use designated initializers for AVClass

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent ef8bea91
......@@ -84,10 +84,10 @@ static const AVOption options[] = {
};
static const AVClass demuxer_class = {
"AVI demuxer",
av_default_item_name,
options,
LIBAVUTIL_VERSION_INT,
.class_name = "AVI demuxer",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment