Skip to content

Commit 8a64e7f

Browse files
committed
Fix incorrect RTP timestamp in RTCP SR
Changes: * Add unit test CONVERT_TIMESTAMP_TO_RTP with math operations * Add parentheses in CONVERT_TIMESTAMP_TO_RTP parameters
1 parent b5ee7ac commit 8a64e7f

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/source/PeerConnection/Rtp.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ STATUS freeKvsRtpTransceiver(PKvsRtpTransceiver*);
7777

7878
STATUS kvsRtpTransceiverSetJitterBuffer(PKvsRtpTransceiver, PJitterBuffer);
7979

80-
#define CONVERT_TIMESTAMP_TO_RTP(clockRate, pts) ((UINT64)((DOUBLE) pts * ((DOUBLE) clockRate / HUNDREDS_OF_NANOS_IN_A_SECOND)))
80+
#define CONVERT_TIMESTAMP_TO_RTP(clockRate, pts) ((UINT64)((DOUBLE)(pts) * ((DOUBLE)(clockRate) / HUNDREDS_OF_NANOS_IN_A_SECOND)))
8181

8282
STATUS writeRtpPacket(PKvsPeerConnection pKvsPeerConnection, PRtpPacket pRtpPacket);
8383

tst/PeerConnectionApiTest.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,15 @@ TEST_F(PeerConnectionApiTest, CONVERT_TIMESTAMP_TO_RTP_BigTimestamp)
160160
EXPECT_EQ(144312782076270, rtpTimestamp);
161161
}
162162

163+
TEST_F(PeerConnectionApiTest, CONVERT_TIMESTAMP_TO_RTP_MacroWithMathOperations)
164+
{
165+
UINT64 rtpTimestamp = CONVERT_TIMESTAMP_TO_RTP(40000 + 50000, HUNDREDS_OF_NANOS_IN_A_SECOND);
166+
EXPECT_EQ(90000, rtpTimestamp);
167+
168+
rtpTimestamp = CONVERT_TIMESTAMP_TO_RTP(90000, HUNDREDS_OF_NANOS_IN_A_SECOND + HUNDREDS_OF_NANOS_IN_A_SECOND);
169+
EXPECT_EQ(180000, rtpTimestamp);
170+
}
171+
163172
} // namespace webrtcclient
164173
} // namespace video
165174
} // namespace kinesis

0 commit comments

Comments
 (0)