summaryrefslogtreecommitdiffstats
path: root/stream/stream_vcd.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-05 02:05:52 +0200
committerwm4 <wm4@nowhere>2013-06-09 22:06:03 +0200
commitf7c912dff299e15b5ebd9f967c447d8b33adf3ca (patch)
treee680656d4a3d8edea6c9ff4ae4679b5d8779afeb /stream/stream_vcd.c
parent7b16d4b3b2a46ea3314d0a2f9140f3359750770f (diff)
downloadmpv-f7c912dff299e15b5ebd9f967c447d8b33adf3ca.tar.bz2
mpv-f7c912dff299e15b5ebd9f967c447d8b33adf3ca.tar.xz
stream: move VCD specific stuff to stream_vcd
I don't even know what VCDs are. A prehistoric version of the DVD or so.
Diffstat (limited to 'stream/stream_vcd.c')
-rw-r--r--stream/stream_vcd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/stream/stream_vcd.c b/stream/stream_vcd.c
index d8ef552aa5..87b03f6e40 100644
--- a/stream/stream_vcd.c
+++ b/stream/stream_vcd.c
@@ -37,6 +37,10 @@
#include "talloc.h"
+#define VCD_SECTOR_SIZE 2352
+#define VCD_SECTOR_OFFS 24
+#define VCD_SECTOR_DATA 2324
+
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__NetBSD__) || defined(__OpenBSD__)
#include "vcd_read_fbsd.h"
#elif defined(__APPLE__)