Fix infinity loop due to latest GlobalState introduced

This commit is contained in:
Sylvain Berfini 2014-02-10 17:02:35 +01:00
parent 3f82d9220f
commit a6d0ce4b4c

View file

@ -706,7 +706,7 @@ void linphone_core_update_streams(LinphoneCore *lc, LinphoneCall *call, SalMedia
bool_t linphone_core_is_payload_type_usable_for_bandwidth(LinphoneCore *lc, PayloadType *pt, int bandwidth_limit);
#define linphone_core_ready(lc) ((lc)->state!=LinphoneGlobalStartup)
#define linphone_core_ready(lc) ((lc)->state==LinphoneGlobalOn || (lc)->state==LinphoneGlobalShutdown)
void _linphone_core_configure_resolver();
struct _EcCalibrator{