summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-08-10 19:49:57 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-08-10 19:49:57 +0000
commit7992a6d91545875e9ffb0d26e4ecf237873f9cc5 (patch)
tree7975c0a2393170288a3b5f62cc029a6dfe0cbc51
parentf9799401c0c8dc5241075d372f989a111841f7c1 (diff)
downloadxine-lib-7992a6d91545875e9ffb0d26e4ecf237873f9cc5.tar.gz
xine-lib-7992a6d91545875e9ffb0d26e4ecf237873f9cc5.tar.bz2
FAQ updates and getting ready for 0.5.1
CVS patchset: 407 CVS date: 2001/08/10 19:49:57
-rw-r--r--configure.in2
-rw-r--r--doc/FAQ16
-rw-r--r--src/demuxers/demux_mpeg.c5
-rw-r--r--src/demuxers/demux_pes.c5
4 files changed, 19 insertions, 9 deletions
diff --git a/configure.in b/configure.in
index d1e9d4a4a..2f44daa1e 100644
--- a/configure.in
+++ b/configure.in
@@ -17,7 +17,7 @@ dnl AC_PREREQ_LIBTOOL(1.4.0,,AC_MSG_ERROR(*** You should have libtool >= 1.4 ins
XINE_MAJOR=0
XINE_MINOR=5
-XINE_SUB=0
+XINE_SUB=1
XINE_PRE=""
TAR_NAME="xine-lib-"$XINE_MAJOR.$XINE_MINOR.$XINE_SUB$XINE_PRE
SPEC_VERSION=$XINE_MAJOR.$XINE_MINOR.$XINE_SUB$XINE_PRE
diff --git a/doc/FAQ b/doc/FAQ
index d0078553c..9bbec9729 100644
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -62,6 +62,10 @@ Now you can build and install xine-ui, same procedure as for xine-lib:
make
make install
+if ./configure complains about not finding xine-lib, again (see above)
+check that <prefix>/bin is in your path and your linker will find
+libs installed in </prefix>/lib.
+
how can I supply additional CFLAGS for the compilation ?
--------------------------------------------------------
@@ -383,6 +387,18 @@ ln -s hdc dvd
should do the job.
+I seem to have problems setting up my RPC-2 drive for the right region
+----------------------------------------------------------------------
+
+You can download a tool to set the region code of RPC-Drives here:
+
+http://linuxtv.org/download/dvd/dvd_disc_20000215_css.tar.gz
+
+Warning: Please be aware that the number of region code changes in
+RPC-2 drives is limited (usually about 5 times), after that your drive
+will stay locked to the region you last set it up for.
+
+
the aspect ratio is wrong!
--------------------------
diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c
index de0fbc2d7..0835ccede 100644
--- a/src/demuxers/demux_mpeg.c
+++ b/src/demuxers/demux_mpeg.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_mpeg.c,v 1.27 2001/07/24 16:09:22 joachim_koenig Exp $
+ * $Id: demux_mpeg.c,v 1.28 2001/08/10 19:49:57 guenter Exp $
*
* demultiplexer for mpeg 1/2 program streams
* reads streams of variable blocksizes
@@ -750,9 +750,6 @@ static int demux_mpeg_open(demux_plugin_t *this_gen,
return DEMUX_CANNOT_HANDLE;
}
-static void demux_mpeg_select_spu_channel (int nChannel) {
-}
-
static char *demux_mpeg_get_id(void) {
return "MPEG";
}
diff --git a/src/demuxers/demux_pes.c b/src/demuxers/demux_pes.c
index 100a4f756..a1569fe74 100644
--- a/src/demuxers/demux_pes.c
+++ b/src/demuxers/demux_pes.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_pes.c,v 1.1 2001/07/24 16:08:51 joachim_koenig Exp $
+ * $Id: demux_pes.c,v 1.2 2001/08/10 19:49:57 guenter Exp $
*
* demultiplexer for mpeg 2 PES (Packetized Elementary Streams)
* reads streams of variable blocksizes
@@ -534,9 +534,6 @@ static int demux_mpeg_open(demux_plugin_t *this_gen,
return DEMUX_CANNOT_HANDLE;
}
-static void demux_mpeg_select_spu_channel (int nChannel) {
-}
-
static char *demux_mpeg_get_id(void) {
return "MPEG_PES";
}