summaryrefslogtreecommitdiff
path: root/libavformat/au.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-07-24 03:23:48 +0200
committerDiego Biurrun <diego@biurrun.de>2012-07-30 20:46:55 +0200
commit0177b7d23aadeab218601893953f0a05209d037c (patch)
treec55b0f2bbca87f7c88982e29922c99e59c1cd559 /libavformat/au.c
parent6774247a9d7d15033c2b80118c03cb0cb10027df (diff)
Improve descriptiveness of a number of codec and container long names
Diffstat (limited to 'libavformat/au.c')
-rw-r--r--libavformat/au.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/au.c b/libavformat/au.c
index bb9d5d5b56..e88486bdcd 100644
--- a/libavformat/au.c
+++ b/libavformat/au.c
@@ -191,7 +191,7 @@ static int au_read_packet(AVFormatContext *s,
#if CONFIG_AU_DEMUXER
AVInputFormat ff_au_demuxer = {
.name = "au",
- .long_name = NULL_IF_CONFIG_SMALL("SUN AU format"),
+ .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
.read_probe = au_probe,
.read_header = au_read_header,
.read_packet = au_read_packet,
@@ -203,7 +203,7 @@ AVInputFormat ff_au_demuxer = {
#if CONFIG_AU_MUXER
AVOutputFormat ff_au_muxer = {
.name = "au",
- .long_name = NULL_IF_CONFIG_SMALL("SUN AU format"),
+ .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
.mime_type = "audio/basic",
.extensions = "au",
.audio_codec = CODEC_ID_PCM_S16BE,