You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: XEngine_Source/XEngine_ServiceApp/XEngine_StreamMediaApp/StreamMedia_PullStream/PullStream_ClientWebRtc.cpp
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -97,9 +97,16 @@ bool PullStream_ClientProtocol_Handle(LPCXSTR lpszClientAddr, XSOCKET hSocket, L
97
97
}
98
98
elseif ((lpszMsgBuffer[0] >> 6 == 2))
99
99
{
100
-
if ((lpszMsgBuffer[1] >= 200) && (lpszMsgBuffer[1] <= 204))
100
+
if ((lpszMsgBuffer[1] >= 200) && (lpszMsgBuffer[1] <= 207))
101
101
{
102
102
//RTCP
103
+
RTCPPROTOCOL_RTCPHDR st_RTCPHdr = {};
104
+
if (!RTCPProtocol_Parse_Header(lpszMsgBuffer, nMsgLen, &st_RTCPHdr))
0 commit comments