summaryrefslogtreecommitdiffstats
path: root/libavdevice
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 /libavdevice
parent6774247a9d7d15033c2b80118c03cb0cb10027df (diff)
downloadffmpeg-streaming-0177b7d23aadeab218601893953f0a05209d037c.zip
ffmpeg-streaming-0177b7d23aadeab218601893953f0a05209d037c.tar.gz
Improve descriptiveness of a number of codec and container long names
Diffstat (limited to 'libavdevice')
-rw-r--r--libavdevice/oss_audio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavdevice/oss_audio.c b/libavdevice/oss_audio.c
index b5fbb318..ef0ace9 100644
--- a/libavdevice/oss_audio.c
+++ b/libavdevice/oss_audio.c
@@ -296,7 +296,7 @@ static const AVClass oss_demuxer_class = {
AVInputFormat ff_oss_demuxer = {
.name = "oss",
- .long_name = NULL_IF_CONFIG_SMALL("Open Sound System capture"),
+ .long_name = NULL_IF_CONFIG_SMALL("OSS (Open Sound System) capture"),
.priv_data_size = sizeof(AudioData),
.read_header = audio_read_header,
.read_packet = audio_read_packet,
@@ -309,7 +309,7 @@ AVInputFormat ff_oss_demuxer = {
#if CONFIG_OSS_OUTDEV
AVOutputFormat ff_oss_muxer = {
.name = "oss",
- .long_name = NULL_IF_CONFIG_SMALL("Open Sound System playback"),
+ .long_name = NULL_IF_CONFIG_SMALL("OSS (Open Sound System) playback"),
.priv_data_size = sizeof(AudioData),
/* XXX: we make the assumption that the soundcard accepts this format */
/* XXX: find better solution with "preinit" method, needed also in
OpenPOWER on IntegriCloud