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/rtsp.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/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 8819d02b25..b0f63967ac 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1354,7 +1354,7 @@ static int rtsp_read_close(AVFormatContext *s) #ifdef CONFIG_RTSP_DEMUXER AVInputFormat rtsp_demuxer = { "rtsp", - "RTSP input format", + NULL_IF_CONFIG_SMALL("RTSP input format"), sizeof(RTSPState), rtsp_probe, rtsp_read_header, @@ -1462,7 +1462,7 @@ static int sdp_read_close(AVFormatContext *s) #ifdef CONFIG_SDP_DEMUXER AVInputFormat sdp_demuxer = { "sdp", - "SDP", + NULL_IF_CONFIG_SMALL("SDP"), sizeof(RTSPState), sdp_probe, sdp_read_header, @@ -1529,7 +1529,7 @@ static int redir_read_header(AVFormatContext *s, AVFormatParameters *ap) AVInputFormat redir_demuxer = { "redir", - "Redirector format", + NULL_IF_CONFIG_SMALL("Redirector format"), 0, redir_probe, redir_read_header, |