mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 18:50:20 +08:00
srt use reference value
This commit is contained in:
parent
33654c47b4
commit
16e791b83c
@ -170,7 +170,7 @@ void SrtTransport::handleHandshakeConclusion(HandshakePacket &pkt, struct sockad
|
|||||||
if (delay <= 120) {
|
if (delay <= 120) {
|
||||||
delay = 120;
|
delay = 120;
|
||||||
}
|
}
|
||||||
for (auto ext : pkt.ext_list) {
|
for (auto& ext : pkt.ext_list) {
|
||||||
// TraceL << getIdentifier() << " ext " << ext->dump();
|
// TraceL << getIdentifier() << " ext " << ext->dump();
|
||||||
if (!req) {
|
if (!req) {
|
||||||
req = std::dynamic_pointer_cast<HSExtMessage>(ext);
|
req = std::dynamic_pointer_cast<HSExtMessage>(ext);
|
||||||
@ -294,13 +294,13 @@ void SrtTransport::handleNAK(uint8_t *buf, int len, struct sockaddr_storage *add
|
|||||||
bool empty = false;
|
bool empty = false;
|
||||||
bool flush = false;
|
bool flush = false;
|
||||||
|
|
||||||
for (auto it : pkt.lost_list) {
|
for (auto& it : pkt.lost_list) {
|
||||||
if (pkt.lost_list.back() == it) {
|
if (pkt.lost_list.back() == it) {
|
||||||
flush = true;
|
flush = true;
|
||||||
}
|
}
|
||||||
empty = true;
|
empty = true;
|
||||||
auto re_list = _send_buf->findPacketBySeq(it.first, it.second - 1);
|
auto re_list = _send_buf->findPacketBySeq(it.first, it.second - 1);
|
||||||
for (auto pkt : re_list) {
|
for (auto& pkt : re_list) {
|
||||||
pkt->R = 1;
|
pkt->R = 1;
|
||||||
pkt->storeToHeader();
|
pkt->storeToHeader();
|
||||||
sendPacket(pkt, flush);
|
sendPacket(pkt, flush);
|
||||||
@ -331,7 +331,7 @@ void SrtTransport::handleDropReq(uint8_t *buf, int len, struct sockaddr_storage
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
uint32_t max_seq = 0;
|
uint32_t max_seq = 0;
|
||||||
for (auto data : list) {
|
for (auto& data : list) {
|
||||||
max_seq = data->packet_seq_number;
|
max_seq = data->packet_seq_number;
|
||||||
if (_last_pkt_seq + 1 != data->packet_seq_number) {
|
if (_last_pkt_seq + 1 != data->packet_seq_number) {
|
||||||
TraceL << "pkt lost " << _last_pkt_seq + 1 << "->" << data->packet_seq_number;
|
TraceL << "pkt lost " << _last_pkt_seq + 1 << "->" << data->packet_seq_number;
|
||||||
@ -501,7 +501,7 @@ void SrtTransport::handleDataPacket(uint8_t *buf, int len, struct sockaddr_stora
|
|||||||
// when no data ok send nack to sender immediately
|
// when no data ok send nack to sender immediately
|
||||||
} else {
|
} else {
|
||||||
uint32_t last_seq;
|
uint32_t last_seq;
|
||||||
for (auto data : list) {
|
for (auto& data : list) {
|
||||||
last_seq = data->packet_seq_number;
|
last_seq = data->packet_seq_number;
|
||||||
if (_last_pkt_seq + 1 != data->packet_seq_number) {
|
if (_last_pkt_seq + 1 != data->packet_seq_number) {
|
||||||
TraceL << "pkt lost " << _last_pkt_seq + 1 << "->" << data->packet_seq_number;
|
TraceL << "pkt lost " << _last_pkt_seq + 1 << "->" << data->packet_seq_number;
|
||||||
|
Loading…
Reference in New Issue
Block a user