1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Refactor the RTP packet.

This commit is contained in:
winlin 2020-05-04 07:40:02 +08:00
parent 47df22df9e
commit 15955b6cdd
4 changed files with 4 additions and 15 deletions

View file

@ -287,7 +287,6 @@ SrsRtpPacket2::SrsRtpPacket2()
cache_payload = 0;
original_bytes = NULL;
nn_original_bytes = 0;
nn_original_payload = 0;
}
@ -355,12 +354,6 @@ void SrsRtpPacket2::set_decode_handler(ISrsRtpPacketDecodeHandler* h)
decode_handler = h;
}
void SrsRtpPacket2::set_original_bytes(char* buf, int nn_buf)
{
original_bytes = buf;
nn_original_bytes = nn_buf;
}
int SrsRtpPacket2::nb_bytes()
{
if (!cache_payload) {