Changeset 812
- Timestamp:
- Nov 21, 2006 8:41:00 AM (16 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/pasound.c
r766 r812 342 342 PaError err; 343 343 344 if (index < =0) {344 if (index < 0) { 345 345 index = pa_get_default_input_dev(channel_count); 346 346 if (index < 0) { … … 438 438 PaError err; 439 439 440 if (index < =0) {440 if (index < 0) { 441 441 index = pa_get_default_output_dev(channel_count); 442 442 if (index < 0) { … … 543 543 PaError err; 544 544 545 if (rec_id < =0) {545 if (rec_id < 0) { 546 546 rec_id = pa_get_default_input_dev(channel_count); 547 547 if (rec_id < 0) { … … 557 557 } 558 558 559 if (play_id < =0) {559 if (play_id < 0) { 560 560 play_id = pa_get_default_output_dev(channel_count); 561 561 if (play_id < 0) { -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
r797 r812 394 394 PJ_ASSERT_RETURN(status == PJ_SUCCESS, status); 395 395 396 397 /* Set default sound device ID */ 398 pjsua_var.cap_dev = pjsua_var.play_dev = -1; 396 399 397 400 /* Init caching pool. */
Note: See TracChangeset
for help on using the changeset viewer.