summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/real/gstrealaudiodec.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bcd4b93a..5b9a1ee4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2008-06-13 Wim Taymans <wim.taymans@collabora.co.uk>
+ * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_probe_modules):
+ Disable sipro on 64bits, it crashes.
+
+2008-06-13 Wim Taymans <wim.taymans@collabora.co.uk>
+
* gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
(close_library), (open_library),
(gst_real_audio_dec_probe_modules), (gst_real_audio_dec_getcaps),
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);