multiplex: Fix bug in reception_flow
This commit is contained in:
parent
77c379cb84
commit
5289f3b2cb
|
@ -524,11 +524,10 @@ void uvgrtp::reception_flow::process_packet(int rce_flags)
|
|||
* field being 0x5a525450. Holepuncher packets contain 0x00 payload. However, holepunching is
|
||||
* not needed if RTCP is enabled.
|
||||
* 4. After determining the correct protocol, hand out the packet to the correct handler if it exists. */
|
||||
|
||||
int i = 1;
|
||||
for (auto& p : packet_handlers_) {
|
||||
int i = 0;
|
||||
uvgrtp::frame::rtp_frame* frame = nullptr;
|
||||
|
||||
++i;
|
||||
//sockaddr_in from = ring_buffer_[ring_read_index_].from;
|
||||
//sockaddr_in6 from6 = ring_buffer_[ring_read_index_].from6;
|
||||
|
||||
|
|
Loading…
Reference in New Issue