diff options
Diffstat (limited to 'src/liblpcm/xine_decoder.c')
-rw-r--r-- | src/liblpcm/xine_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liblpcm/xine_decoder.c b/src/liblpcm/xine_decoder.c index fa45cd7bd..2f482dd15 100644 --- a/src/liblpcm/xine_decoder.c +++ b/src/liblpcm/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.13 2001/11/10 13:48:02 guenter Exp $ + * $Id: xine_decoder.c,v 1.14 2001/11/13 21:47:58 heikos Exp $ * * 31-8-2001 Added LPCM rate sensing. * (c) 2001 James Courtier-Dutton James@superbug.demon.co.uk @@ -146,7 +146,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, config_values_t * lpcm_decoder_t *this ; - if (iface_version != 2) { + if (iface_version != 3) { printf( "liblpcm: plugin doesn't support plugin API version %d.\n" "liblpcm: this means there's a version mismatch between xine and this " "liblpcm: decoder plugin.\nInstalling current plugins should help.\n", @@ -156,7 +156,7 @@ audio_decoder_t *init_audio_decoder_plugin (int iface_version, config_values_t * this = (lpcm_decoder_t *) malloc (sizeof (lpcm_decoder_t)); - this->audio_decoder.interface_version = 2; + this->audio_decoder.interface_version = 3; this->audio_decoder.can_handle = lpcm_can_handle; this->audio_decoder.init = lpcm_init; this->audio_decoder.decode_data = lpcm_decode_data; |