summaryrefslogtreecommitdiff
path: root/src/libdts
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/libdts
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/libdts')
-rw-r--r--src/libdts/xine_decoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libdts/xine_decoder.c b/src/libdts/xine_decoder.c
index b831c15f6..52bf21fd7 100644
--- a/src/libdts/xine_decoder.c
+++ b/src/libdts/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.2 2001/11/10 13:48:02 guenter Exp $
+ * $Id: xine_decoder.c,v 1.3 2001/11/13 21:47:58 heikos Exp $
*
* 04-09-2001 DTS passtrough (C) Joachim Koenig
*
@@ -113,7 +113,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, config_values_t *
dts_decoder_t *this ;
- if (iface_version != 2) {
+ if (iface_version != 3) {
printf( "libdts: plugin doesn't support plugin API version %d.\n"
"libdts: this means there's a version mismatch between xine and this "
"libdts: decoder plugin.\nInstalling current plugins should help.\n",
@@ -123,7 +123,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, config_values_t *
this = (dts_decoder_t *) malloc (sizeof (dts_decoder_t));
- this->audio_decoder.interface_version = 2;
+ this->audio_decoder.interface_version = 3;
this->audio_decoder.can_handle = dts_can_handle;
this->audio_decoder.init = dts_init;
this->audio_decoder.decode_data = dts_decode_data;