Changeset 2506 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
- Timestamp:
- Mar 12, 2009 6:11:37 PM (14 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk
-
Property
svn:mergeinfo
set to
False
/pjproject/branches/projects/aps-direct merged eligible
-
Property
svn:mergeinfo
set to
False
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r2394 r2506 371 371 PJSUA_LOCK(); 372 372 373 /* Create sound port if none is instantiated */ 374 if (pjsua_var.snd_port==NULL && pjsua_var.null_snd==NULL && 375 !pjsua_var.no_snd) 373 /* Create sound port if none is instantiated, to check if sound device 374 * can be used. But only do this with the conference bridge, as with 375 * audio switchboard (i.e. APS-Direct), we can only open the sound 376 * device once the correct format has been known 377 */ 378 if (!pjsua_var.is_mswitch && pjsua_var.snd_port==NULL && 379 pjsua_var.null_snd==NULL && !pjsua_var.no_snd) 376 380 { 377 381 pj_status_t status;
Note: See TracChangeset
for help on using the changeset viewer.