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
fix(video): Handle empty frame dimensions when screen grabs are denied.
If a video capture fails (e.g. gdigrab error), it may emit frames with
0x0 dimensions. `VideoFrame::toQImage` previously checked for
`isValid()`, which incorrectly included 0x0 sizes, causing nullptr
derefs. `isEmpty()` catches zero dimensions. Also, added nullptr checks
in the internal frame storage logic.
0 commit comments