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
1: self.video.refresh(x, y, width, height)
2: while True:
3: update_type = await self.read()
4: if update_type is UpdateType.VIDEO:
5: if self.video.is_complete():
6: return self.video.as_rgba()
line 1: Sends refresh for ROI
line 5: Expects update for Full Frame.
Yes, some servers choose to send the entire frame update. But the RFC does not require such behavior and such server behavior is difficult to consider reasonable.
The text was updated successfully, but these errors were encountered:
line 1: Sends refresh for ROI
line 5: Expects update for Full Frame.
Yes, some servers choose to send the entire frame update. But the RFC does not require such behavior and such server behavior is difficult to consider reasonable.
The text was updated successfully, but these errors were encountered: