Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-10-26 03:04:13 +0400
committerPaul B Mahol <onemda@gmail.com>2012-10-26 03:04:13 +0400
commit73f9d2e887310824b187c2f8b071ba96f6f9f3df (patch)
tree2951b0b3e764f2a4135ec44f3fa62d5efe6b6a6c /libavformat
parent15f52e50fe37bdc8778f3f6097ba343c871ec228 (diff)
cafenc: make .long_name match demuxer
While here reindent .codec_tag . Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/cafenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c
index fa8d5838c4..dc222cd50d 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},
};