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 /libavformat/wav.c | |
parent | 6774247a9d7d15033c2b80118c03cb0cb10027df (diff) | |
download | ffmpeg-0177b7d23aadeab218601893953f0a05209d037c.tar.gz |
Improve descriptiveness of a number of codec and container long names
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r-- | libavformat/wav.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c index 4ff2c389fc..042bcd8c4a 100644 --- a/libavformat/wav.c +++ b/libavformat/wav.c @@ -207,7 +207,7 @@ static const AVClass wav_muxer_class = { AVOutputFormat ff_wav_muxer = { .name = "wav", - .long_name = NULL_IF_CONFIG_SMALL("WAV format"), + .long_name = NULL_IF_CONFIG_SMALL("WAV / WAVE (Waveform Audio)"), .mime_type = "audio/x-wav", .extensions = "wav", .priv_data_size = sizeof(WAVContext), @@ -588,7 +588,7 @@ static int wav_read_seek(AVFormatContext *s, AVInputFormat ff_wav_demuxer = { .name = "wav", - .long_name = NULL_IF_CONFIG_SMALL("WAV format"), + .long_name = NULL_IF_CONFIG_SMALL("WAV / WAVE (Waveform Audio)"), .priv_data_size = sizeof(WAVContext), .read_probe = wav_probe, .read_header = wav_read_header, |