Commit 367ffa0c authored by Paul B Mahol's avatar Paul B Mahol

avcodec/flacenc: use designated initializers for AVClass

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent db6e337b
...@@ -1468,10 +1468,10 @@ static const AVOption options[] = { ...@@ -1468,10 +1468,10 @@ static const AVOption options[] = {
}; };
static const AVClass flac_encoder_class = { static const AVClass flac_encoder_class = {
"FLAC encoder", .class_name = "FLAC encoder",
av_default_item_name, .item_name = av_default_item_name,
options, .option = options,
LIBAVUTIL_VERSION_INT, .version = LIBAVUTIL_VERSION_INT,
}; };
AVCodec ff_flac_encoder = { AVCodec ff_flac_encoder = {
......
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