[Ffmpeg-cvslog] r8841 - trunk/libavformat/rtsp.c

alex subversion
Fri Apr 27 01:41:20 CEST 2007


Author: alex
Date: Fri Apr 27 01:41:20 2007
New Revision: 8841

Log:
Don't compile RTSP_DEMUXER if not requested

Modified:
   trunk/libavformat/rtsp.c

Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c	(original)
+++ trunk/libavformat/rtsp.c	Fri Apr 27 01:41:20 2007
@@ -1282,6 +1282,7 @@ static int rtsp_read_close(AVFormatConte
     return 0;
 }
 
+#ifdef CONFIG_RTSP_DEMUXER
 AVInputFormat rtsp_demuxer = {
     "rtsp",
     "RTSP input format",
@@ -1295,6 +1296,7 @@ AVInputFormat rtsp_demuxer = {
     .read_play = rtsp_read_play,
     .read_pause = rtsp_read_pause,
 };
+#endif
 
 static int sdp_probe(AVProbeData *p1)
 {




More information about the ffmpeg-cvslog mailing list