diff --git a/core/AmRtpStream.cpp b/core/AmRtpStream.cpp index 6c70ad50..1e8c0c36 100644 --- a/core/AmRtpStream.cpp +++ b/core/AmRtpStream.cpp @@ -176,7 +176,7 @@ int AmRtpStream::send( unsigned int ts, unsigned char* buffer, unsigned int size rp.marker = false; rp.sequence = sequence++; rp.timestamp = ts; - rp.ssrc = l_ssrc; + rp.ssrc = 0; //l_ssrc; rp.compile((unsigned char*)buffer,size); rp.setAddr(&r_saddr); diff --git a/core/AmRtpStream.h b/core/AmRtpStream.h index 0a01f44c..e6f06a99 100644 --- a/core/AmRtpStream.h +++ b/core/AmRtpStream.h @@ -88,6 +88,7 @@ protected: int_payload if using dynamic payloads) */ int payload; + unsigned int sequence; /** Payload of last received packet. @@ -117,8 +118,7 @@ protected: /** the recv_offset initialized ? */ bool recv_offset_i; - unsigned int sequence; - unsigned int l_ssrc; + // unsigned int l_ssrc; unsigned int r_ssrc; bool r_ssrc_i;