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/mpegtsenc.c | |
parent | 5a43bd5e2609705ee8b834c789fe93399588ca85 (diff) | |
download | ffmpeg-4a7a1b7def03051e16a3ffbbe51d41f227aea0fd.tar.gz |
lavf: use designated initializers for AVClasses.
Diffstat (limited to 'libavformat/mpegtsenc.c')
-rw-r--r-- | libavformat/mpegtsenc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index bf66aa0be3..d8fe5ed555 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -89,10 +89,10 @@ static const AVOption options[] = { }; static const AVClass mpegts_muxer_class = { - "MPEGTS muxer", - av_default_item_name, - options, - LIBAVUTIL_VERSION_INT, + .class_name = "MPEGTS muxer", + .item_name = av_default_item_name, + .option = options, + .version = LIBAVUTIL_VERSION_INT, }; /* NOTE: 4 bytes must be left at the end for the crc32 */ |