Pass the raw size of pixel data instead of valid area (fixes issue #2733)
This commit is contained in:
parent
bb006b46e6
commit
a90c9f9c3e
|
@ -84,7 +84,7 @@ void CefVideoConsumerOSR::OnFrameCaptured(
|
|||
damage_rect = content_rect;
|
||||
}
|
||||
|
||||
view_->OnPaint(damage_rect, content_rect.size(), pixels);
|
||||
view_->OnPaint(damage_rect, info->coded_size, pixels);
|
||||
}
|
||||
|
||||
void CefVideoConsumerOSR::OnStopped() {}
|
||||
|
|
Loading…
Reference in New Issue