diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-11-26 03:12:56 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-11-26 03:12:56 +0000 |
commit | af7d8b2612b416db81f14911d20dfb9f996f0eff (patch) | |
tree | 8321123d59c0e7129542ae20f000dc09ccaed24d /src/libfaad/xine_decoder.c | |
parent | 8831e75a65b8831096c569570c5a418ac0de57c0 (diff) | |
download | xine-lib-af7d8b2612b416db81f14911d20dfb9f996f0eff.tar.gz xine-lib-af7d8b2612b416db81f14911d20dfb9f996f0eff.tar.bz2 |
better solution: go ahead and build libfaad but without any plugin
catalog entry; this will automatically fix (or workaround) existing
compilations of the libfaad plugin
CVS patchset: 3375
CVS date: 2002/11/26 03:12:56
Diffstat (limited to 'src/libfaad/xine_decoder.c')
-rw-r--r-- | src/libfaad/xine_decoder.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libfaad/xine_decoder.c b/src/libfaad/xine_decoder.c index fc7954641..feaa515e2 100644 --- a/src/libfaad/xine_decoder.c +++ b/src/libfaad/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.10 2002/11/20 11:57:43 mroi Exp $ + * $Id: xine_decoder.c,v 1.11 2002/11/26 03:12:57 tmmm Exp $ * */ @@ -399,6 +399,7 @@ static decoder_info_t dec_info_audio = { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_AUDIO_DECODER, 12, "faad", XINE_VERSION_CODE, &dec_info_audio, init_plugin }, +/* disable plugin catalog entry until the decoder works again */ +/* { PLUGIN_AUDIO_DECODER, 12, "faad", XINE_VERSION_CODE, &dec_info_audio, init_plugin },*/ { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |