зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1582294 - Implement MediaStreamTrackSource::HasAlpha for HTMLCanvasElement sources. r=jib
Differential Revision: https://phabricator.services.mozilla.com/D92900
This commit is contained in:
Родитель
d1aeaca86a
Коммит
8b6f27b098
|
@ -651,6 +651,14 @@ class CanvasCaptureTrackSource : public MediaStreamTrackSource {
|
|||
return MediaSourceEnum::Other;
|
||||
}
|
||||
|
||||
bool HasAlpha() const override {
|
||||
if (!mCaptureStream || !mCaptureStream->Canvas()) {
|
||||
// In cycle-collection
|
||||
return false;
|
||||
}
|
||||
return !mCaptureStream->Canvas()->GetIsOpaque();
|
||||
}
|
||||
|
||||
void Stop() override {
|
||||
if (!mCaptureStream) {
|
||||
NS_ERROR("No stream");
|
||||
|
|
Загрузка…
Ссылка в новой задаче