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/mp3enc.c | |
parent | 6774247a9d7d15033c2b80118c03cb0cb10027df (diff) | |
download | ffmpeg-0177b7d23aadeab218601893953f0a05209d037c.tar.gz |
Improve descriptiveness of a number of codec and container long names
Diffstat (limited to 'libavformat/mp3enc.c')
-rw-r--r-- | libavformat/mp3enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index 5365e3d505..af15d6a8c2 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -190,7 +190,7 @@ static int mp3_write_trailer(struct AVFormatContext *s) #if CONFIG_MP2_MUXER AVOutputFormat ff_mp2_muxer = { .name = "mp2", - .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 2"), + .long_name = NULL_IF_CONFIG_SMALL("MP2 (MPEG audio layer 2)"), .mime_type = "audio/x-mpeg", .extensions = "mp2,m2a", .audio_codec = CODEC_ID_MP2, @@ -309,7 +309,7 @@ static int mp3_write_header(struct AVFormatContext *s) AVOutputFormat ff_mp3_muxer = { .name = "mp3", - .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 3"), + .long_name = NULL_IF_CONFIG_SMALL("MP3 (MPEG audio layer 3)"), .mime_type = "audio/x-mpeg", .extensions = "mp3", .priv_data_size = sizeof(MP3Context), |