1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-03 11:50:29 +00:00

gsmopen: FS-4652 , compilation failed with Mobigator

This commit is contained in:
Giovanni Maruzzelli 2012-09-26 18:55:54 +02:00
parent 3df5c5f2f4
commit f102f7b4c4

@ -1469,10 +1469,12 @@ static switch_status_t load_config(int reload_type)
#else #else
const char *no_sound = "1"; const char *no_sound = "1";
#endif // defined(GSMOPEN_ALSA) || defined(GSMOPEN_PORTAUDIO) #endif // defined(GSMOPEN_ALSA) || defined(GSMOPEN_PORTAUDIO)
#ifdef GSMOPEN_PORTAUDIO
const char *portaudiocindex; const char *portaudiocindex;
const char *portaudiopindex; const char *portaudiopindex;
const char *speexecho; const char *speexecho;
const char *speexpreprocess; const char *speexpreprocess;
#endif// GSMOPEN_PORTAUDIO
uint32_t interface_id = 0; uint32_t interface_id = 0;
#ifdef WIN32 #ifdef WIN32
@ -1620,6 +1622,7 @@ static switch_status_t load_config(int reload_type)
alsacname = val; alsacname = val;
} else if (!strcasecmp(var, "alsapname")) { } else if (!strcasecmp(var, "alsapname")) {
alsapname = val; alsapname = val;
#ifdef GSMOPEN_PORTAUDIO
} else if (!strcasecmp(var, "portaudiocindex")) { } else if (!strcasecmp(var, "portaudiocindex")) {
portaudiocindex = val; portaudiocindex = val;
} else if (!strcasecmp(var, "portaudiopindex")) { } else if (!strcasecmp(var, "portaudiopindex")) {
@ -1628,6 +1631,7 @@ static switch_status_t load_config(int reload_type)
speexecho = val; speexecho = val;
} else if (!strcasecmp(var, "speexpreprocess")) { } else if (!strcasecmp(var, "speexpreprocess")) {
speexpreprocess = val; speexpreprocess = val;
#endif// GSMOPEN_PORTAUDIO
} else if (!strcasecmp(var, "at_early_audio")) { } else if (!strcasecmp(var, "at_early_audio")) {
at_early_audio = val; at_early_audio = val;
} else if (!strcasecmp(var, "at_after_preinit_pause")) { } else if (!strcasecmp(var, "at_after_preinit_pause")) {