Fix fallback handling of RFI on older servers
This commit is contained in:
parent
3593dea585
commit
4c62b5d23a
1 changed files with 5 additions and 1 deletions
|
|
@ -733,7 +733,11 @@ static void processRtpPayload(PNV_VIDEO_PACKET videoPacket, int length,
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Hope for the best with older servers
|
// Hope for the best with older servers
|
||||||
waitingForRefInvalFrame = false;
|
if (waitingForRefInvalFrame) {
|
||||||
|
connectionDetectedFrameLoss(startFrameNumber, frameIndex - 1);
|
||||||
|
waitingForRefInvalFrame = false;
|
||||||
|
waitingForNextSuccessfulFrame = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (APP_VERSION_AT_LEAST(7, 1, 446)) {
|
if (APP_VERSION_AT_LEAST(7, 1, 446)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue