From bde15e74de442cebf61acc6cd598a13aca249030 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 3 Jun 2008 16:20:54 +0000 Subject: 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 --- libavformat/amr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/amr.c') diff --git a/libavformat/amr.c b/libavformat/amr.c index d8c5399e3f..edf8f8d7d0 100644 --- a/libavformat/amr.c +++ b/libavformat/amr.c @@ -169,7 +169,7 @@ static int amr_read_packet(AVFormatContext *s, #ifdef CONFIG_AMR_DEMUXER AVInputFormat amr_demuxer = { "amr", - "3gpp amr file format", + NULL_IF_CONFIG_SMALL("3GPP AMR file format"), 0, /*priv_data_size*/ amr_probe, amr_read_header, @@ -181,7 +181,7 @@ AVInputFormat amr_demuxer = { #ifdef CONFIG_AMR_MUXER AVOutputFormat amr_muxer = { "amr", - "3gpp amr file format", + NULL_IF_CONFIG_SMALL("3GPP AMR file format"), "audio/amr", "amr", 0, -- cgit v1.2.3