Browse Source

avcodec/flacdec: use designated initializers for AVClass

tags/n4.4
Paul B Mahol 5 years ago
parent
commit
ccc7120ee7
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavcodec/flacdec.c

+ 4
- 4
libavcodec/flacdec.c View File

@@ -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 = {


Loading…
Cancel
Save