Commit ccc7120e authored by Paul B Mahol's avatar Paul B Mahol

avcodec/flacdec: use designated initializers for AVClass

parent 5c923ce6
......@@ -654,10 +654,10 @@ static const AVOption options[] = {
};
static const AVClass flac_decoder_class = {
"FLAC decoder",
av_default_item_name,
options,
LIBAVUTIL_VERSION_INT,
.class_name = "FLAC decoder",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
};
AVCodec ff_flac_decoder = {
......
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