Changeset 538
- Timestamp:
- Jun 22, 2006 6:47:29 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/stream.c
r505 r538 696 696 697 697 698 /* Check for errors */ 699 if (bytes_read < 0) { 700 LOGERR_((stream->port.info.name.ptr, "RTP recv() error", -bytes_read)); 701 return; 702 } 703 698 704 /* Update RTP and RTCP session. */ 699 705 status = pjmedia_rtp_decode_rtp(&channel->rtp, pkt, bytes_read, … … 823 829 pj_ssize_t bytes_read) 824 830 { 831 /* Check for errors */ 832 if (bytes_read < 0) { 833 LOGERR_((stream->port.info.name.ptr, "RTCP recv() error", 834 -bytes_read)); 835 return; 836 } 837 825 838 pjmedia_rtcp_rx_rtcp(&stream->rtcp, pkt, bytes_read); 826 839 }
Note: See TracChangeset
for help on using the changeset viewer.