Ignore:
Timestamp:
Aug 26, 2008 4:51:28 PM (16 years ago)
Author:
nanang
Message:

Ticket #602:

  • Introduced new API pjmedia_rtp_session_init2() to enable intializing RTP session with non-default initial settings
  • Updated stream so it can be created with non-default initial RTP settings.
  • Updated pjsua-lib to make sure RTP timestamp and sequence contigue when stream session is restarted.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r2191 r2241  
    106106    call->audio_idx = -1; 
    107107    call->ssrc = pj_rand(); 
     108    call->rtp_tx_seq = 0; 
     109    call->rtp_tx_ts = 0; 
     110    call->rtp_tx_seq_ts_set = 0; 
    108111    call->xfer_sub = NULL; 
    109112    call->last_code = (pjsip_status_code) 0; 
Note: See TracChangeset for help on using the changeset viewer.