File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8652,7 +8652,7 @@ void srt::CUDT::processCtrlLossReport(const CPacket& ctrlpkt)
86528652
86538653 // This variable is used in "normal" logs, so it may cause a warning
86548654 // when logging is forcefully off.
8655- int32_t wrong_loss SRT_ATR_UNUSED = CSeqNo::m_iMaxSeqNo ;
8655+ int32_t wrong_loss SRT_ATR_UNUSED = SRT_SEQNO_NONE ;
86568656
86578657 // protect packet retransmission
86588658 {
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class FECFilterBuiltin: public SrtPacketFilterBase
4747 size_t drop; // < by how much the sequence should increase to get to the next series
4848 size_t collected; // < how many packets were taken to collect the clip
4949
50- Group (): base(CSeqNo::m_iMaxSeqNo ), step(0 ), drop(0 ), collected(0 )
50+ Group (): base(SRT_SEQNO_NONE ), step(0 ), drop(0 ), collected(0 )
5151 {
5252 }
5353
@@ -87,7 +87,7 @@ class FECFilterBuiltin: public SrtPacketFilterBase
8787#if ENABLE_HEAVY_LOGGING
8888 std::string DisplayStats ()
8989 {
90- if (base == CSeqNo::m_iMaxSeqNo )
90+ if (base == SRT_SEQNO_NONE )
9191 return " UNINITIALIZED!!!" ;
9292
9393 std::ostringstream os;
You can’t perform that action at this time.
0 commit comments