Skip to content

Commit

Permalink
Mac compile errors fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jdelapla committed Apr 4, 2023
1 parent fc84c7a commit c6bf339
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/source/PeerConnection/JitterBuffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ BOOL enterSequenceNumberOverflowCheck(PJitterBuffer pJitterBuffer, PRtpPacket pR
BOOL overflow = FALSE;
BOOL underflow = FALSE;
UINT16 packetsUntilOverflow = MAX_RTP_SEQUENCE_NUM - pJitterBuffer->tailSequenceNumber;
UINT16 underflowFromMaxRange = 0;

if (!pJitterBuffer->sequenceNumberOverflowState) {
// overflow case
Expand Down Expand Up @@ -398,7 +397,6 @@ STATUS jitterBufferPush(PJitterBuffer pJitterBuffer, PRtpPacket pRtpPacket, PBOO
STATUS retStatus = STATUS_SUCCESS, status = STATUS_SUCCESS;
UINT64 hashValue = 0;
PRtpPacket pCurPacket = NULL;
UINT16 packetsUntilOverflow = 0;

CHK(pJitterBuffer != NULL && pRtpPacket != NULL, STATUS_NULL_ARG);

Expand Down

0 comments on commit c6bf339

Please sign in to comment.