Don't compile RTSP_DEMUXER if not requested
authorAlex Beregszaszi <alex@rtfs.hu>
Thu, 26 Apr 2007 23:41:20 +0000 (23:41 +0000)
committerAlex Beregszaszi <alex@rtfs.hu>
Thu, 26 Apr 2007 23:41:20 +0000 (23:41 +0000)
Originally committed as revision 8841 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rtsp.c

index 17fe297..2a7f7eb 100644 (file)
@@ -1282,6 +1282,7 @@ static int rtsp_read_close(AVFormatContext *s)
     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)
 {