diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-10-13 11:47:11 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-10-13 11:47:11 +0000 |
commit | bf6b1747ae4bad46dbbf5fa2189a18b45c1d6b38 (patch) | |
tree | 60ac612a5a60675173b00d73bf9aefc3b5085e34 /src/input/libdvdnav/diff_against_cvs.patch | |
parent | ee3b51f5df1a50e02d43d7cf81fbef19f61aa942 (diff) | |
download | xine-lib-bf6b1747ae4bad46dbbf5fa2189a18b45c1d6b38.tar.gz xine-lib-bf6b1747ae4bad46dbbf5fa2189a18b45c1d6b38.tar.bz2 |
Add vcdx plugin(CVS) and dependent libs(no CVS, broken API).
Ability to use external libs (--with-external-vcdnav), disable
vcdx build and build old vcd instead (--disable-vcdx).
This last feature is useful since vcdx take /hours/ to start
playback, that can help people who don't want vcd navigation.
Remove all .la files, even in subdirs (eg: post)
CVS patchset: 5505
CVS date: 2003/10/13 11:47:11
Diffstat (limited to 'src/input/libdvdnav/diff_against_cvs.patch')
-rw-r--r-- | src/input/libdvdnav/diff_against_cvs.patch | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/src/input/libdvdnav/diff_against_cvs.patch b/src/input/libdvdnav/diff_against_cvs.patch deleted file mode 100644 index 607923d4d..000000000 --- a/src/input/libdvdnav/diff_against_cvs.patch +++ /dev/null @@ -1,57 +0,0 @@ ---- src/input/libdvdnav/dvdnav.c -+++ src/input/libdvdnav/dvdnav.c -@@ -71,7 +71,7 @@ - struct timeval time; - - /* Create a new structure */ -- fprintf(MSG_OUT, "libdvdnav: Using dvdnav version %s from http://dvd.sf.net\n", VERSION); -+ fprintf(MSG_OUT, "libdvdnav: Using dvdnav version %s from http://xine.sf.net\n", VERSION); - - (*dest) = NULL; - this = (dvdnav_t*)malloc(sizeof(dvdnav_t)); ---- src/input/libdvdnav/dvd_reader.c -+++ src/input/libdvdnav/dvd_reader.c -@@ -44,6 +44,7 @@ - #include <mntent.h> - #endif - -+#include "compat.h" - #include "dvd_udf.h" - #include "dvd_input.h" - #include "dvd_reader.h" -@@ -393,7 +394,7 @@ - - if( cdir >= 0 ) { - chdir( path_copy ); -- new_path = getcwd( NULL, PATH_MAX ); -+ new_path = getcwd( NULL, XINE_PATH_MAX ); - fchdir( cdir ); - close( cdir ); - if( new_path ) { -@@ -573,7 +574,7 @@ - - static int findDVDFile( dvd_reader_t *dvd, const char *file, char *filename ) - { -- char video_path[ PATH_MAX + 1 ]; -+ char video_path[ XINE_PATH_MAX + 1 ]; - const char *nodirfile; - int ret; - -@@ -607,7 +608,7 @@ - */ - static dvd_file_t *DVDOpenFilePath( dvd_reader_t *dvd, char *filename ) - { -- char full_path[ PATH_MAX + 1 ]; -+ char full_path[ XINE_PATH_MAX + 1 ]; - dvd_file_t *dvd_file; - struct stat fileinfo; - dvd_input_t dev; -@@ -691,7 +692,7 @@ - static dvd_file_t *DVDOpenVOBPath( dvd_reader_t *dvd, int title, int menu ) - { - char filename[ MAX_UDF_FILE_NAME_LEN ]; -- char full_path[ PATH_MAX + 1 ]; -+ char full_path[ XINE_PATH_MAX + 1 ]; - struct stat fileinfo; - dvd_file_t *dvd_file; - int i; |