summaryrefslogtreecommitdiff
path: root/src/demuxers
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-07-05 17:31:59 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-07-05 17:31:59 +0000
commit22d0545163db353dd95e5fd2fe4492a3aae81079 (patch)
tree8f20f6dce7a21c82ae40be4ae9d91d6e0766f56a /src/demuxers
parent8ab4cd4497b60eebbeed0947dc19591e32264557 (diff)
downloadxine-lib-22d0545163db353dd95e5fd2fe4492a3aae81079.tar.gz
xine-lib-22d0545163db353dd95e5fd2fe4492a3aae81079.tar.bz2
Bump up version numbers due to changes in xine_t
CVS patchset: 2214 CVS date: 2002/07/05 17:31:59
Diffstat (limited to 'src/demuxers')
-rw-r--r--src/demuxers/demux.h4
-rw-r--r--src/demuxers/demux_asf.c4
-rw-r--r--src/demuxers/demux_avi.c4
-rw-r--r--src/demuxers/demux_cda.c4
-rw-r--r--src/demuxers/demux_elem.c4
-rw-r--r--src/demuxers/demux_film.c4
-rw-r--r--src/demuxers/demux_mpeg.c4
-rw-r--r--src/demuxers/demux_mpeg_block.c4
-rw-r--r--src/demuxers/demux_mpgaudio.c4
-rw-r--r--src/demuxers/demux_ogg.c4
-rw-r--r--src/demuxers/demux_pes.c4
-rw-r--r--src/demuxers/demux_qt.c4
-rw-r--r--src/demuxers/demux_roq.c4
-rw-r--r--src/demuxers/demux_ts.c4
14 files changed, 28 insertions, 28 deletions
diff --git a/src/demuxers/demux.h b/src/demuxers/demux.h
index ed52a9d52..c56b4fa8f 100644
--- a/src/demuxers/demux.h
+++ b/src/demuxers/demux.h
@@ -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.h,v 1.16 2002/06/07 02:40:46 miguelfreitas Exp $
+ * $Id: demux.h,v 1.17 2002/07/05 17:31:59 mroi Exp $
*/
#ifndef HAVE_DEMUX_H
@@ -35,7 +35,7 @@ extern "C" {
#include "input_plugin.h"
#endif
-#define DEMUXER_PLUGIN_IFACE_VERSION 9
+#define DEMUXER_PLUGIN_IFACE_VERSION 10
#define DEMUX_OK 0
#define DEMUX_FINISHED 1
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c
index 768c9324f..ea4ff3f66 100644
--- a/src/demuxers/demux_asf.c
+++ b/src/demuxers/demux_asf.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_asf.c,v 1.47 2002/07/02 21:32:04 guenter Exp $
+ * $Id: demux_asf.c,v 1.48 2002/07/05 17:31:59 mroi Exp $
*
* demultiplexer for asf streams
*
@@ -1398,7 +1398,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_asf_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_asf: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c
index 2be4d44c4..9e8b977e5 100644
--- a/src/demuxers/demux_avi.c
+++ b/src/demuxers/demux_avi.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_avi.c,v 1.99 2002/07/02 17:05:28 miguelfreitas Exp $
+ * $Id: demux_avi.c,v 1.100 2002/07/05 17:31:59 mroi Exp $
*
* demultiplexer for avi streams
*
@@ -1594,7 +1594,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_avi_t *this;
- if (iface != 9) {
+ if (iface != 10) {
xine_log (xine, XINE_LOG_PLUGIN,
_("demux_avi: this plugin doesn't support plugin API version %d.\n"
"demux_avi: this means there's a version mismatch between xine and this "
diff --git a/src/demuxers/demux_cda.c b/src/demuxers/demux_cda.c
index 6dba3d75b..a412e0dbd 100644
--- a/src/demuxers/demux_cda.c
+++ b/src/demuxers/demux_cda.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_cda.c,v 1.20 2002/06/12 12:22:33 f1rmb Exp $
+ * $Id: demux_cda.c,v 1.21 2002/07/05 17:31:59 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -293,7 +293,7 @@ static int demux_cda_get_stream_length (demux_plugin_t *this_gen) {
demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_cda_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_cda: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_elem.c b/src/demuxers/demux_elem.c
index 52abe63c3..74dae2f28 100644
--- a/src/demuxers/demux_elem.c
+++ b/src/demuxers/demux_elem.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_elem.c,v 1.47 2002/06/12 12:22:33 f1rmb Exp $
+ * $Id: demux_elem.c,v 1.48 2002/07/05 17:31:59 mroi Exp $
*
* demultiplexer for elementary mpeg streams
*
@@ -366,7 +366,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_mpeg_elem_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_elem: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_film.c b/src/demuxers/demux_film.c
index c166a6e5d..d6320b072 100644
--- a/src/demuxers/demux_film.c
+++ b/src/demuxers/demux_film.c
@@ -21,7 +21,7 @@
* For more information on the FILM file format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: demux_film.c,v 1.15 2002/07/05 04:17:57 tmmm Exp $
+ * $Id: demux_film.c,v 1.16 2002/07/05 17:31:59 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -792,7 +792,7 @@ static char *demux_film_get_mimetypes(void) {
demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_film_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_film: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin. Installing current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c
index 161e93b64..19de5a44d 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.65 2002/06/12 12:22:33 f1rmb Exp $
+ * $Id: demux_mpeg.c,v 1.66 2002/07/05 17:31:59 mroi Exp $
*
* demultiplexer for mpeg 1/2 program streams
* reads streams of variable blocksizes
@@ -973,7 +973,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_mpeg_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_mpeg: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_mpeg_block.c b/src/demuxers/demux_mpeg_block.c
index b359742d0..0b1b54859 100644
--- a/src/demuxers/demux_mpeg_block.c
+++ b/src/demuxers/demux_mpeg_block.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_block.c,v 1.105 2002/06/29 19:23:56 tmattern Exp $
+ * $Id: demux_mpeg_block.c,v 1.106 2002/07/05 17:32:00 mroi Exp $
*
* demultiplexer for mpeg 1/2 program streams
*
@@ -1187,7 +1187,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_mpeg_block_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_mpeg_block: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c
index dd5c10ee5..879bd0304 100644
--- a/src/demuxers/demux_mpgaudio.c
+++ b/src/demuxers/demux_mpgaudio.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_mpgaudio.c,v 1.50 2002/06/12 12:22:33 f1rmb Exp $
+ * $Id: demux_mpgaudio.c,v 1.51 2002/07/05 17:32:00 mroi Exp $
*
* demultiplexer for mpeg audio (i.e. mp3) streams
*
@@ -521,7 +521,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_mpgaudio_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_mpeg: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c
index ca9f77ec0..c57cfa1d1 100644
--- a/src/demuxers/demux_ogg.c
+++ b/src/demuxers/demux_ogg.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_ogg.c,v 1.29 2002/06/12 12:22:33 f1rmb Exp $
+ * $Id: demux_ogg.c,v 1.30 2002/07/05 17:32:00 mroi Exp $
*
* demultiplexer for ogg streams
*
@@ -645,7 +645,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_ogg_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf( _("demux_ogg: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_pes.c b/src/demuxers/demux_pes.c
index 6b6372958..1b06271f5 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.32 2002/06/12 12:22:33 f1rmb Exp $
+ * $Id: demux_pes.c,v 1.33 2002/07/05 17:32:00 mroi Exp $
*
* demultiplexer for mpeg 2 PES (Packetized Elementary Streams)
* reads streams of variable blocksizes
@@ -604,7 +604,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_pes_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_pes: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c
index 64ad8e252..0b2d1accb 100644
--- a/src/demuxers/demux_qt.c
+++ b/src/demuxers/demux_qt.c
@@ -30,7 +30,7 @@
* build_frame_table
* free_qt_info
*
- * $Id: demux_qt.c,v 1.59 2002/07/05 15:43:33 tmmm Exp $
+ * $Id: demux_qt.c,v 1.60 2002/07/05 17:32:00 mroi Exp $
*
*/
@@ -1540,7 +1540,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_qt_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_qt: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_roq.c b/src/demuxers/demux_roq.c
index d5761162b..910461426 100644
--- a/src/demuxers/demux_roq.c
+++ b/src/demuxers/demux_roq.c
@@ -21,7 +21,7 @@
* For more information regarding the RoQ file format, visit:
* http://www.csse.monash.edu.au/~timf/
*
- * $Id: demux_roq.c,v 1.6 2002/06/19 16:33:01 esnel Exp $
+ * $Id: demux_roq.c,v 1.7 2002/07/05 17:32:01 mroi Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -532,7 +532,7 @@ static char *demux_roq_get_mimetypes(void) {
demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_roq_t *this;
- if (iface != 9) {
+ if (iface != 10) {
printf (_("demux_roq: plugin doesn't support plugin API version %d.\n"
" this means there's a version mismatch between xine and this "
" demuxer plugin.\nInstalling current demux plugins should help.\n"),
diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c
index 0848dd57b..c3bd029c8 100644
--- a/src/demuxers/demux_ts.c
+++ b/src/demuxers/demux_ts.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_ts.c,v 1.51 2002/06/21 20:01:48 miguelfreitas Exp $
+ * $Id: demux_ts.c,v 1.52 2002/07/05 17:32:01 mroi Exp $
*
* Demultiplexer for MPEG2 Transport Streams.
*
@@ -1657,7 +1657,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_ts *this;
int i;
- if (iface != 9) {
+ if (iface != 10) {
LOG_MSG (xine,
_("demux_ts: plugin doesn't support plugin API version %d.\n"
" This means there's a version mismatch between xine "