summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-20 08:51:53 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-20 08:51:53 +0000
commit77eb726c3d388163a7be7a63f023c322700a1068 (patch)
tree3f5997cf76aec8f060d04f32cec31f1227456386 /stream/stream.c
parent9ae4923673f76d9673d662b32c33134123ff335d (diff)
downloadmpv-77eb726c3d388163a7be7a63f023c322700a1068.tar.bz2
mpv-77eb726c3d388163a7be7a63f023c322700a1068.tar.xz
Remove pointless #ifdefs around extern declarations.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26039 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/stream/stream.c b/stream/stream.c
index 1dd1549890..9c1fb8b0b4 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -34,13 +34,8 @@
//#include "vcd_read_bincue.h"
-#ifdef HAVE_VCD
extern const stream_info_t stream_info_vcd;
-#endif
-#ifdef HAVE_CDDA
extern const stream_info_t stream_info_cdda;
-#endif
-#ifdef MPLAYER_NETWORK
extern const stream_info_t stream_info_netstream;
extern const stream_info_t stream_info_pnm;
extern const stream_info_t stream_info_asf;
@@ -49,44 +44,23 @@ extern const stream_info_t stream_info_rtp;
extern const stream_info_t stream_info_udp;
extern const stream_info_t stream_info_http1;
extern const stream_info_t stream_info_http2;
-#endif
-#ifdef HAS_DVBIN_SUPPORT
extern const stream_info_t stream_info_dvb;
-#endif
-#ifdef USE_TV
extern const stream_info_t stream_info_tv;
-#endif
-#ifdef USE_RADIO
extern const stream_info_t stream_info_radio;
-#endif
-#ifdef HAVE_PVR
extern const stream_info_t stream_info_pvr;
-#endif
-#ifdef HAVE_FTP
extern const stream_info_t stream_info_ftp;
-#endif
-#ifdef HAVE_VSTREAM
extern const stream_info_t stream_info_vstream;
-#endif
-#ifdef USE_DVDNAV
extern const stream_info_t stream_info_dvdnav;
-#endif
-#ifdef LIBSMBCLIENT
extern const stream_info_t stream_info_smb;
-#endif
-#ifdef STREAMING_LIVE555
extern const stream_info_t stream_info_sdp;
extern const stream_info_t stream_info_rtsp_sip;
-#endif
extern const stream_info_t stream_info_cue;
extern const stream_info_t stream_info_null;
extern const stream_info_t stream_info_mf;
extern const stream_info_t stream_info_file;
-#ifdef USE_DVDREAD
extern const stream_info_t stream_info_ifo;
extern const stream_info_t stream_info_dvd;
-#endif
static const stream_info_t* const auto_open_streams[] = {
#ifdef HAVE_VCD