Commit a6859d1c authored by Gildas Bazin's avatar Gildas Bazin

* modules/codec/mpeg_audio.c: don't use this codec if we don't have an...

* modules/codec/mpeg_audio.c: don't use this codec if we don't have an mpgatofixed32 audio filter (a bit of a hack but it works :).
parent a30cdd82
......@@ -7,7 +7,7 @@
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
* Christophe Massiot <massiot@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
* Gildas Bazin <gbazin@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -132,6 +132,13 @@ static int OpenDecoder( vlc_object_t *p_this )
return VLC_EGENERIC;
}
/* HACK: Don't use this codec if we don't have an mpga audio filter */
if( p_dec->i_object_type == VLC_OBJECT_DECODER &&
!config_FindModule( p_this, "mpgatofixed32" ) )
{
return VLC_EGENERIC;
}
/* Allocate the memory needed to store the decoder's structure */
if( ( p_dec->p_sys = p_sys =
(decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment