summaryrefslogtreecommitdiff
path: root/src/libmad
diff options
context:
space:
mode:
authorHeiko Schaefer <heikos@users.sourceforge.net>2001-11-13 21:47:57 +0000
committerHeiko Schaefer <heikos@users.sourceforge.net>2001-11-13 21:47:57 +0000
commit96056accd3b60b48527d521b85a3d50d78d3d42f (patch)
treefc93f084460362a7c1fd4162ef1957fd9caefccb /src/libmad
parent40ff01806b091bd7c5419d8f411906d504d33252 (diff)
downloadxine-lib-96056accd3b60b48527d521b85a3d50d78d3d42f.tar.gz
xine-lib-96056accd3b60b48527d521b85a3d50d78d3d42f.tar.bz2
metronom logic changed
CVS patchset: 1030 CVS date: 2001/11/13 21:47:57
Diffstat (limited to 'src/libmad')
-rw-r--r--src/libmad/xine_decoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmad/xine_decoder.c b/src/libmad/xine_decoder.c
index dd775740c..5a621c4a5 100644
--- a/src/libmad/xine_decoder.c
+++ b/src/libmad/xine_decoder.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: xine_decoder.c,v 1.8 2001/11/10 13:48:02 guenter Exp $
+ * $Id: xine_decoder.c,v 1.9 2001/11/13 21:47:58 heikos Exp $
*
* stuff needed to turn libmad into a xine decoder plugin
*/
@@ -246,7 +246,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, config_values_t *
mad_decoder_t *this ;
- if (iface_version != 2) {
+ if (iface_version != 3) {
printf( "libmad: plugin doesn't support plugin API version %d.\n"
"libmad: this means there's a version mismatch between xine and this "
"libmad: decoder plugin.\nInstalling current plugins should help.\n",
@@ -257,7 +257,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, config_values_t *
this = (mad_decoder_t *) malloc (sizeof (mad_decoder_t));
- this->audio_decoder.interface_version = 2;
+ this->audio_decoder.interface_version = 3;
this->audio_decoder.can_handle = mad_can_handle;
this->audio_decoder.init = mad_init;
this->audio_decoder.decode_data = mad_decode_data;