diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2008-06-13 18:25:18 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2008-06-13 18:25:18 +0000 |
commit | 7d5e4116a6f74a94af6eb533d75ca19d84e3c30d (patch) | |
tree | 634c438625398a5bb3f1bd7d80487407662616f7 /gst | |
parent | 1a39f60d9f9fa8ad7b664787f162f9fa7e616957 (diff) | |
download | gst-plugins-bad-7d5e4116a6f74a94af6eb533d75ca19d84e3c30d.tar.gz gst-plugins-bad-7d5e4116a6f74a94af6eb533d75ca19d84e3c30d.tar.bz2 gst-plugins-bad-7d5e4116a6f74a94af6eb533d75ca19d84e3c30d.zip |
gst/real/gstrealaudiodec.c: Disable sipro on 64bits, it crashes.
Original commit message from CVS:
* gst/real/gstrealaudiodec.c: (gst_real_audio_dec_probe_modules):
Disable sipro on 64bits, it crashes.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/real/gstrealaudiodec.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/real/gstrealaudiodec.c b/gst/real/gstrealaudiodec.c index bb07de9d..1a94a77b 100644 --- a/gst/real/gstrealaudiodec.c +++ b/gst/real/gstrealaudiodec.c @@ -359,9 +359,14 @@ gst_real_audio_dec_probe_modules (GstRealAudioDec * dec) if ((dec->valid_ra28_8 = open_library (dec, GST_REAL_AUDIO_DEC_VERSION_28_8, &dummy))) close_library (dec, &dummy); +#ifdef HAVE_CPU_X86_64 + /* disabled because it does not seem to work on 64 bits */ + dec->valid_sipr = FALSE; +#else if ((dec->valid_sipr = open_library (dec, GST_REAL_AUDIO_DEC_VERSION_SIPR, &dummy))) close_library (dec, &dummy); +#endif if ((dec->valid_cook = open_library (dec, GST_REAL_AUDIO_DEC_VERSION_COOK, &dummy))) close_library (dec, &dummy); |