summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-31 18:36:29 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-31 18:36:29 +0000
commit1cad07f6cddba40362c31b1f08ddb4cb35063f1a (patch)
tree7078553089a5dd18d0265942660324273aded4e7 /stream/stream.c
parent7690284b94cecc13f0f6a3d853751df5419c0d58 (diff)
downloadmpv-1cad07f6cddba40362c31b1f08ddb4cb35063f1a.tar.bz2
mpv-1cad07f6cddba40362c31b1f08ddb4cb35063f1a.tar.xz
add an explicit tv stream input instead of the previous hack in stream_null
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19279 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/stream/stream.c b/stream/stream.c
index f1b12ae827..aedc9bc759 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -54,6 +54,9 @@ extern stream_info_t stream_info_http2;
#ifdef HAS_DVBIN_SUPPORT
extern stream_info_t stream_info_dvb;
#endif
+#ifdef USE_TV
+extern stream_info_t stream_info_tv;
+#endif
#ifdef HAVE_PVR
extern stream_info_t stream_info_pvr;
#endif
@@ -104,6 +107,9 @@ stream_info_t* auto_open_streams[] = {
#ifdef HAS_DVBIN_SUPPORT
&stream_info_dvb,
#endif
+#ifdef USE_TV
+ &stream_info_tv,
+#endif
#ifdef HAVE_PVR
&stream_info_pvr,
#endif