diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-29 11:30:02 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-17 23:01:42 +0200 |
commit | f0029cbcf68d77f4ea0ea0cc36596ea2a5305b13 (patch) | |
tree | 639e57fc963fe245eca07ec29843bdfc839a2ada /libavformat/mp3enc.c | |
parent | 13220b1856c98d83ad8ac237e789927cce0b9413 (diff) | |
download | ffmpeg-f0029cbcf68d77f4ea0ea0cc36596ea2a5305b13.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 2337837ef1..00ed6f8d4c 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -167,10 +167,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], |