diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-29 11:30:02 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-29 11:39:34 +0200 |
commit | 4a7a1b7def03051e16a3ffbbe51d41f227aea0fd (patch) | |
tree | 316321fe313a60daee14ec45c0df2b55f203723c /libavformat/mp3enc.c | |
parent | 5a43bd5e2609705ee8b834c789fe93399588ca85 (diff) | |
download | ffmpeg-4a7a1b7def03051e16a3ffbbe51d41f227aea0fd.tar.gz |
lavf: use designated initializers for AVClasses.
Diffstat (limited to 'libavformat/mp3enc.c')
-rw-r--r-- | libavformat/mp3enc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index d46e67b70c..0a2d04c7bb 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -166,10 +166,10 @@ static const AVOption options[] = { }; static const AVClass mp3_muxer_class = { - "MP3 muxer", - av_default_item_name, - options, - LIBAVUTIL_VERSION_INT, + .class_name = "MP3 muxer", + .item_name = av_default_item_name, + .option = options, + .version = LIBAVUTIL_VERSION_INT, }; static int id3v2_check_write_tag(AVFormatContext *s, AVMetadataTag *t, const char table[][4], |