mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
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.
This commit is contained in:
parent
1a39f60d9f
commit
7d5e4116a6
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
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>
|
2008-06-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
* gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
|
* gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
|
||||||
|
|
|
@ -359,9 +359,14 @@ gst_real_audio_dec_probe_modules (GstRealAudioDec * dec)
|
||||||
if ((dec->valid_ra28_8 =
|
if ((dec->valid_ra28_8 =
|
||||||
open_library (dec, GST_REAL_AUDIO_DEC_VERSION_28_8, &dummy)))
|
open_library (dec, GST_REAL_AUDIO_DEC_VERSION_28_8, &dummy)))
|
||||||
close_library (dec, &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 =
|
if ((dec->valid_sipr =
|
||||||
open_library (dec, GST_REAL_AUDIO_DEC_VERSION_SIPR, &dummy)))
|
open_library (dec, GST_REAL_AUDIO_DEC_VERSION_SIPR, &dummy)))
|
||||||
close_library (dec, &dummy);
|
close_library (dec, &dummy);
|
||||||
|
#endif
|
||||||
if ((dec->valid_cook =
|
if ((dec->valid_cook =
|
||||||
open_library (dec, GST_REAL_AUDIO_DEC_VERSION_COOK, &dummy)))
|
open_library (dec, GST_REAL_AUDIO_DEC_VERSION_COOK, &dummy)))
|
||||||
close_library (dec, &dummy);
|
close_library (dec, &dummy);
|
||||||
|
|
Loading…
Reference in a new issue