h26x: Fix bug when start fragment was not received, but subsequent ones were.

This commit is contained in:
Heikki Tampio 2024-03-27 13:43:14 +02:00
parent 0e631832ab
commit b3b1be0b1f
1 changed files with 4 additions and 2 deletions

View File

@ -810,8 +810,10 @@ rtp_error_t uvgrtp::formats::h26x::packet_handler(void* args, int rce_flags, uin
}
if (next == c || s) {
continuous = true;
reconstructed_fragments.at(start).seqs.insert(c);
if (reconstructed_fragments.find(start) != reconstructed_fragments.end() ) {
continuous = true;
reconstructed_fragments.at(start).seqs.insert(c);
}
}
next = next_seq_num(c);
//UVG_LOG_DEBUG("Current fragment %u, next %u, start %d, end %d, continuous %d", c, next, s, e, continuous);