]> git.sesse.net Git - ffmpeg/commitdiff
cafenc: make .long_name match demuxer
authorPaul B Mahol <onemda@gmail.com>
Thu, 25 Oct 2012 23:04:13 +0000 (23:04 +0000)
committerPaul B Mahol <onemda@gmail.com>
Thu, 25 Oct 2012 23:04:13 +0000 (23:04 +0000)
While here reindent .codec_tag .

Signed-off-by: Paul B Mahol <onemda@gmail.com>
libavformat/cafenc.c

index fa8d5838c486877c388b697baa703f7aa97667ff..dc222cd50d43d2c3cada73a513128aa4c052df1e 100644 (file)
@@ -249,7 +249,7 @@ static int caf_write_trailer(AVFormatContext *s)
 
 AVOutputFormat ff_caf_muxer = {
     .name           = "caf",
-    .long_name      = NULL_IF_CONFIG_SMALL("Apple Core Audio Format"),
+    .long_name      = NULL_IF_CONFIG_SMALL("Apple CAF (Core Audio Format)"),
     .mime_type      = "audio/x-caf",
     .extensions     = "caf",
     .priv_data_size = sizeof(CAFContext),
@@ -258,5 +258,5 @@ AVOutputFormat ff_caf_muxer = {
     .write_header   = caf_write_header,
     .write_packet   = caf_write_packet,
     .write_trailer  = caf_write_trailer,
-    .codec_tag= (const AVCodecTag* const []){ff_codec_caf_tags, 0},
+    .codec_tag      = (const AVCodecTag* const []){ff_codec_caf_tags, 0},
 };