[FFmpeg-cvslog] cafenc: make .long_name match demuxer
Paul B Mahol
git at videolan.org
Fri Oct 26 01:06:22 CEST 2012
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Oct 25 23:04:13 2012 +0000| [73f9d2e887310824b187c2f8b071ba96f6f9f3df] | committer: Paul B Mahol
cafenc: make .long_name match demuxer
While here reindent .codec_tag .
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=73f9d2e887310824b187c2f8b071ba96f6f9f3df
---
libavformat/cafenc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c
index fa8d583..dc222cd 100644
--- a/libavformat/cafenc.c
+++ b/libavformat/cafenc.c
@@ -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},
};
More information about the ffmpeg-cvslog
mailing list