diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-24 03:23:48 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-07-30 20:46:55 +0200 |
commit | 0177b7d23aadeab218601893953f0a05209d037c (patch) | |
tree | c55b0f2bbca87f7c88982e29922c99e59c1cd559 /libavdevice/oss_audio.c | |
parent | 6774247a9d7d15033c2b80118c03cb0cb10027df (diff) | |
download | ffmpeg-0177b7d23aadeab218601893953f0a05209d037c.tar.gz |
Improve descriptiveness of a number of codec and container long names
Diffstat (limited to 'libavdevice/oss_audio.c')
-rw-r--r-- | libavdevice/oss_audio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavdevice/oss_audio.c b/libavdevice/oss_audio.c index b5fbb318dc..ef0ace94f0 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 |