Changeset 426
- Timestamp:
- May 2, 2006 5:44:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/conference.c
r411 r426 1363 1363 1364 1364 if (status != PJ_SUCCESS) { 1365 /* bennylp: why do we need this???? 1366 * Also see comments on similar issue with write_port(). 1365 1367 PJ_LOG(4,(THIS_FILE, "Port %.*s get_frame() returned %d. " 1366 1368 "Port is now disabled", … … 1369 1371 status)); 1370 1372 conf_port->rx_setting = PJMEDIA_PORT_DISABLE; 1373 */ 1371 1374 continue; 1372 1375 } … … 1464 1467 status = write_port( conf, conf_port, frame->timestamp.u32.lo); 1465 1468 if (status != PJ_SUCCESS) { 1469 /* bennylp: why do we need this???? 1470 One thing for sure, put_frame()/write_port() may return 1471 non-successfull status on Win32 if there's temporary glitch 1472 on network interface, so disabling the port here does not 1473 sound like a good idea. 1474 1466 1475 PJ_LOG(4,(THIS_FILE, "Port %.*s put_frame() returned %d. " 1467 1476 "Port is now disabled", … … 1470 1479 status)); 1471 1480 conf_port->tx_setting = PJMEDIA_PORT_DISABLE; 1481 */ 1472 1482 continue; 1473 1483 }
Note: See TracChangeset
for help on using the changeset viewer.