diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-06-03 16:20:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-06-03 16:20:54 +0000 |
commit | bde15e74de442cebf61acc6cd598a13aca249030 (patch) | |
tree | d636b1125dfbbfd09c3b06044b8ac1a182a28271 /libavformat/mp3.c | |
parent | ca162a5004fcd2209b6ee1eeb92731cfe1142ca1 (diff) | |
download | ffmpeg-bde15e74de442cebf61acc6cd598a13aca249030.tar.gz |
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
patch by Stefano Sabatini, stefano.sabatini-lala poste.it
along with some spelling/consistency fixes for the long names by me
Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mp3.c')
-rw-r--r-- | libavformat/mp3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c index 459bf23ea2..5a75a95fbe 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -646,7 +646,7 @@ static int mp3_write_trailer(struct AVFormatContext *s) #ifdef CONFIG_MP3_DEMUXER AVInputFormat mp3_demuxer = { "mp3", - "MPEG audio", + NULL_IF_CONFIG_SMALL("MPEG audio"), 0, mp3_read_probe, mp3_read_header, @@ -659,7 +659,7 @@ AVInputFormat mp3_demuxer = { #ifdef CONFIG_MP2_MUXER AVOutputFormat mp2_muxer = { "mp2", - "MPEG audio layer 2", + NULL_IF_CONFIG_SMALL("MPEG audio layer 2"), "audio/x-mpeg", #ifdef CONFIG_LIBMP3LAME "mp2,m2a", @@ -677,7 +677,7 @@ AVOutputFormat mp2_muxer = { #ifdef CONFIG_MP3_MUXER AVOutputFormat mp3_muxer = { "mp3", - "MPEG audio layer 3", + NULL_IF_CONFIG_SMALL("MPEG audio layer 3"), "audio/x-mpeg", "mp3", 0, |