avcodec/flacdec: use designated initializers for AVClass

pull/350/head
Paul B Mahol 5 years ago
parent 5c923ce668
commit ccc7120ee7
  1. 8
      libavcodec/flacdec.c

@ -654,10 +654,10 @@ static const AVOption options[] = {
}; };
static const AVClass flac_decoder_class = { static const AVClass flac_decoder_class = {
"FLAC decoder", .class_name = "FLAC decoder",
av_default_item_name, .item_name = av_default_item_name,
options, .option = options,
LIBAVUTIL_VERSION_INT, .version = LIBAVUTIL_VERSION_INT,
}; };
AVCodec ff_flac_decoder = { AVCodec ff_flac_decoder = {

Loading…
Cancel
Save