diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-07-05 17:31:59 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-07-05 17:31:59 +0000 |
commit | 22d0545163db353dd95e5fd2fe4492a3aae81079 (patch) | |
tree | 8f20f6dce7a21c82ae40be4ae9d91d6e0766f56a /src/libxinevdec | |
parent | 8ab4cd4497b60eebbeed0947dc19591e32264557 (diff) | |
download | xine-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/libxinevdec')
-rw-r--r-- | src/libxinevdec/cinepak.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/cyuv.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/foovideo.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/msvc.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/roqvideo.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/svq1.c | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/src/libxinevdec/cinepak.c b/src/libxinevdec/cinepak.c index e2540f53e..a448d2b54 100644 --- a/src/libxinevdec/cinepak.c +++ b/src/libxinevdec/cinepak.c @@ -22,7 +22,7 @@ * based on overview of Cinepak algorithm and example decoder * by Tim Ferguson: http://www.csse.monash.edu.au/~timf/ * - * $Id: cinepak.c,v 1.8 2002/06/12 12:22:37 f1rmb Exp $ + * $Id: cinepak.c,v 1.9 2002/07/05 17:32:04 mroi Exp $ */ #include <stdlib.h> @@ -428,7 +428,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { cvid_decoder_t *this ; - if (iface_version != 9) { + if (iface_version != 10) { printf(_("cinepak: plugin doesn't support plugin API version %d.\n" "cinepak: this means there's a version mismatch between xine and this " "cinepak: decoder plugin.\nInstalling current plugins should help.\n"), diff --git a/src/libxinevdec/cyuv.c b/src/libxinevdec/cyuv.c index 3031f8c2e..0595e0456 100644 --- a/src/libxinevdec/cyuv.c +++ b/src/libxinevdec/cyuv.c @@ -18,7 +18,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: cyuv.c,v 1.3 2002/05/25 19:19:19 siggi Exp $ + * $Id: cyuv.c,v 1.4 2002/07/05 17:32:04 mroi Exp $ */ /* And this is the header that came with the CYUV decoder: */ @@ -228,7 +228,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { cyuv_decoder_t *this ; - if (iface_version != 9) { + if (iface_version != 10) { printf( "CYUV: plugin doesn't support plugin API version %d.\n" "CYUV: this means there's a version mismatch between xine and this " "CYUV: decoder plugin.\nInstalling current plugins should help.\n", diff --git a/src/libxinevdec/foovideo.c b/src/libxinevdec/foovideo.c index c5bbf7a44..28fd42f55 100644 --- a/src/libxinevdec/foovideo.c +++ b/src/libxinevdec/foovideo.c @@ -20,7 +20,7 @@ * General description and author credits go here... * * Leave the following line intact for when the decoder is committed to CVS: - * $Id: foovideo.c,v 1.1 2002/06/10 05:18:46 tmmm Exp $ + * $Id: foovideo.c,v 1.2 2002/07/05 17:32:04 mroi Exp $ */ #include <stdio.h> @@ -267,7 +267,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { foovideo_decoder_t *this ; - if (iface_version != 9) { + if (iface_version != 10) { printf( "foovideo: plugin doesn't support plugin API version %d.\n" "foovideo: this means there's a version mismatch between xine and this " "foovideo: decoder plugin.\nInstalling current plugins should help.\n", diff --git a/src/libxinevdec/msvc.c b/src/libxinevdec/msvc.c index 3db4681e8..d14d34329 100644 --- a/src/libxinevdec/msvc.c +++ b/src/libxinevdec/msvc.c @@ -22,7 +22,7 @@ * based on overview of Microsoft Video-1 algorithm * by Mike Melanson: http://www.pcisys.net/~melanson/codecs/video1.txt * - * $Id: msvc.c,v 1.6 2002/06/25 03:37:53 tmmm Exp $ + * $Id: msvc.c,v 1.7 2002/07/05 17:32:04 mroi Exp $ */ #include <stdlib.h> @@ -348,7 +348,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { msvc_decoder_t *this ; - if (iface_version != 9) { + if (iface_version != 10) { printf( "msvc: plugin doesn't support plugin API version %d.\n" "msvc: this means there's a version mismatch between xine and this " "msvc: decoder plugin.\nInstalling current plugins should help.\n", diff --git a/src/libxinevdec/roqvideo.c b/src/libxinevdec/roqvideo.c index 11afa1a98..b2284d38c 100644 --- a/src/libxinevdec/roqvideo.c +++ b/src/libxinevdec/roqvideo.c @@ -18,7 +18,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: roqvideo.c,v 1.4 2002/06/12 12:22:37 f1rmb Exp $ + * $Id: roqvideo.c,v 1.5 2002/07/05 17:32:04 mroi Exp $ */ /* And this is the header that came with the RoQ video decoder: */ @@ -492,7 +492,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { roq_decoder_t *this ; - if (iface_version != 9) { + if (iface_version != 10) { printf(_("RoQ: plugin doesn't support plugin API version %d.\n" "RoQ: this means there's a version mismatch between xine and this " "RoQ: decoder plugin.\nInstalling current plugins should help.\n"), diff --git a/src/libxinevdec/svq1.c b/src/libxinevdec/svq1.c index f27e3b3dc..26581301e 100644 --- a/src/libxinevdec/svq1.c +++ b/src/libxinevdec/svq1.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: svq1.c,v 1.1 2002/06/20 17:47:11 siggi Exp $ + * $Id: svq1.c,v 1.2 2002/07/05 17:32:04 mroi Exp $ */ #include <stdio.h> @@ -1505,7 +1505,7 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { svq1dec_decoder_t *this ; - if (iface_version != 9) { + if (iface_version != 10) { printf( "svq1: plugin doesn't support plugin API version %d.\n" "svq1: this means there's a version mismatch between xine and this " "svq1: decoder plugin.\nInstalling current plugins should help.\n", |