summaryrefslogtreecommitdiffstats
path: root/libmpdvdkit2
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-16 22:43:44 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-16 22:43:44 +0000
commit134caf90233ebfb7de946fa323ac2dba1ed5db4d (patch)
tree71ceb76f912bd0cf7a28930ec1be2d65f09ad2b8 /libmpdvdkit2
parent672183346b7e2e24a69d0e4132d7fafc8185a33d (diff)
downloadmpv-134caf90233ebfb7de946fa323ac2dba1ed5db4d.tar.bz2
mpv-134caf90233ebfb7de946fa323ac2dba1ed5db4d.tar.xz
importing libmpdvdkit files
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7032 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdvdkit2')
-rw-r--r--libmpdvdkit2/Makefile58
-rw-r--r--libmpdvdkit2/README32
-rw-r--r--libmpdvdkit2/config.h50
3 files changed, 140 insertions, 0 deletions
diff --git a/libmpdvdkit2/Makefile b/libmpdvdkit2/Makefile
new file mode 100644
index 0000000000..000c287611
--- /dev/null
+++ b/libmpdvdkit2/Makefile
@@ -0,0 +1,58 @@
+
+ifneq ($(wildcard ../config.mak),)
+include ../config.mak
+endif
+
+SRCS = css.c device.c dvd_input.c dvd_reader.c dvd_udf.c error.c ifo_print.c ifo_read.c ioctl.c libdvdcss.c nav_print.c nav_read.c
+
+#bsdi_ioctl.c
+
+OBJS = $(SRCS:.c=.o)
+
+LIB=libmpdvdkit
+
+.SUFFIXES: .c .o
+
+ifeq ($(OPTFLAGS),)
+ OPTFLAGS = -mcpu=pentium -march=pentium -O4
+else
+ OPTFLAGS += -DHAVE_MPLAYER
+endif
+
+# \ -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
+
+# -funroll-loops removed, triggered gcc 3.0.4 (3.x?) bug
+CFLAGS= -I. $(OPTFLAGS) $(EXTRA_INC)\
+ -DSYS_LINUX -D__USE_UNIX98 -D_REENTRANT -D_GNU_SOURCE \
+ -ffast-math -fomit-frame-pointer
+
+.c.o:
+ $(CC) $(CFLAGS) -c -o $@ $<
+
+all: $(LIB).a
+default: $(LIB).a
+
+$(LIB).a: $(OBJS)
+ $(AR) rc $(LIB).a $(OBJS)
+
+$(LIB).so: $(OBJS)
+ $(CC) -o $(LIB).so -shared -rdynamic $(OBJS)
+
+clean:
+ rm -f $(OBJS) $(LIB).a $(LIB).so .depend
+
+distclean: clean
+
+dep: depend
+
+depend: .depend
+
+.depend: Makefile config.h
+ $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+
+#
+# include dependency files if they exist
+#
+ifneq ($(wildcard .depend),)
+include .depend
+endif
diff --git a/libmpdvdkit2/README b/libmpdvdkit2/README
new file mode 100644
index 0000000000..cd37c27292
--- /dev/null
+++ b/libmpdvdkit2/README
@@ -0,0 +1,32 @@
+MPlayer DVD-kit v2.2 :)
+made by Pontscho & A'rpi for the MPlayer project
+
+What the hell is this?
+======================
+nothing special, just collection of sources and patches and fixes:
+
+- dvdread 0.9.3 + static libdvdcss (removed dlopen code)
+- libdvdcss 1.2.2 + per-disc css key cache patch
+- optimizations enabled, asserts disabled
+everything packed together with _static_ linking to maximize performance
+
+Why?
+====
+users keep complaining about the still not fixed assert() bug, the
+buggy libdvdcss 1.0 or the slow key-cracking process...
+so Pontscho decided to pack these together, fix bugs and make it
+available for the MPlayer users.
+
+Hey, I don't like this, this is not legal!
+==========================================
+It is GPL code, so should be legal, anyway if you don't want it, just
+delete this directory! MPlayer's ./configure will check if this directory
+exists, so it is OK to delete.
+
+How to ccompile mpdvdkit as shared library (lib*.so)?
+=====================================================
+After running MPlayer's ./configure, change this line in config.mak:
+DVDKIT_SHARED = no
+to:
+DVDKIT_SHARED = yes
+and make; make install; ldconfig
diff --git a/libmpdvdkit2/config.h b/libmpdvdkit2/config.h
new file mode 100644
index 0000000000..80d4cf2eeb
--- /dev/null
+++ b/libmpdvdkit2/config.h
@@ -0,0 +1,50 @@
+
+/* Version number of package */
+#define VERSION "1.2.2"
+#define HAVE_UNISTD_H 1
+
+/* Define if your processor stores words with the most significant
+ byte first (like Motorola and SPARC, unlike Intel and VAX). */
+#ifdef HAVE_MPLAYER
+
+#include "../config.h"
+
+#else
+
+#undef WORDS_BIGENDIAN
+
+/* Define if you have the <stddef.h> header file. */
+#define HAVE_STDDEF_H 1
+
+/* Define if <sys/dvdio.h> defines dvd_struct. */
+#undef DVD_STRUCT_IN_SYS_DVDIO_H
+
+/* Define if <sys/cdio.h> defines dvd_struct. */
+#undef DVD_STRUCT_IN_SYS_CDIO_H
+
+/* Define if <linux/cdrom.h> defines DVD_STRUCT. */
+#define DVD_STRUCT_IN_LINUX_CDROM_H 1
+
+/* Define if <dvd.h> defines DVD_STRUCT. */
+#undef DVD_STRUCT_IN_DVD_H
+
+/* Define if <extras/BSDI_dvdioctl/dvd.h> defines DVD_STRUCT. */
+#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H
+
+/* Have userspace SCSI headers. */
+#undef SOLARIS_USCSI
+
+/* Define if Linux-like dvd_struct is defined. */
+#define HAVE_LINUX_DVD_STRUCT 1
+
+/* Define if BSD-like dvd_struct is defined. */
+#undef HAVE_BSD_DVD_STRUCT
+
+#endif
+
+/* assert support */
+#undef HAVE_ASSERT_H
+
+#ifndef HAVE_ASSERT_H
+ #define assert( ... ) do {} while(0)
+#endif