summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-03 00:31:41 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-03 00:31:41 +0000
commit4cd35a04b907fcf450f3571b0f3288df848c4b07 (patch)
treef47dab2f2f578efae47bde754f9462e433b151ba /stream.c
parent8e97bbd1dd30c66b3b12c42c56c773ee70b798b6 (diff)
downloadmpv-4cd35a04b907fcf450f3571b0f3288df848c4b07.tar.bz2
mpv-4cd35a04b907fcf450f3571b0f3288df848c4b07.tar.xz
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@959 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/stream.c b/stream.c
index 5f69194f16..f7829f6119 100644
--- a/stream.c
+++ b/stream.c
@@ -9,13 +9,23 @@
//#include <sys/stat.h>
//#include <fcntl.h>
+#ifdef __FreeBSD__
+#include <sys/cdio.h>
+#include <sys/cdrio.h>
+#else
#include <linux/cdrom.h>
+#endif
#include "stream.h"
extern int verbose; // defined in mplayer.c
+#ifdef __FreeBSD__
+#warning "VCD support under FreeBSD not implemented yet"
+#include "vcd_read_fbsd.c"
+#else
#include "vcd_read.c"
+#endif
//=================== STREAMER =========================