41 lines
1.7 KiB
Diff
41 lines
1.7 KiB
Diff
|
From e2dd6decbe25ea9498f1ba213808f34b232740c7 Mon Sep 17 00:00:00 2001
|
||
|
From: "commit-queue@webkit.org"
|
||
|
<commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
|
||
|
Date: Mon, 1 Apr 2019 09:47:08 +0000
|
||
|
Subject: [PATCH] Build failure after r243644 in GTK Linux 64-bit stable builds
|
||
|
https://bugs.webkit.org/show_bug.cgi?id=196440
|
||
|
|
||
|
Patch by Pablo Saavedra <psaavedra@igalia.com> on 2019-04-01
|
||
|
Reviewed by Philippe Normand.
|
||
|
|
||
|
* platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
|
||
|
(WebCore::MediaPlayerPrivateGStreamerBase::updateTextureMapperFlags):
|
||
|
|
||
|
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@243690 268f45cc-cd09-0410-ab3c-d52691b4dbfc
|
||
|
---
|
||
|
Source/WebCore/ChangeLog | 10 ++++++++++
|
||
|
.../graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp | 2 ++
|
||
|
2 files changed, 12 insertions(+)
|
||
|
|
||
|
diff --git a/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp b/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
|
||
|
index 00a2af6489e..5cb5f7536ac 100644
|
||
|
--- a/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
|
||
|
+++ b/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
|
||
|
@@ -1000,11 +1000,13 @@ void MediaPlayerPrivateGStreamerBase::updateTextureMapperFlags()
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
+#if USE(GSTREAMER_GL)
|
||
|
// When the imxvpudecoder is used, the texture sampling of the
|
||
|
// directviv-uploaded texture returns an RGB value, so there's no need to
|
||
|
// convert it.
|
||
|
if (m_videoDecoderPlatform != WebKitGstVideoDecoderPlatform::ImxVPU)
|
||
|
m_textureMapperFlags |= TEXTURE_MAPPER_COLOR_CONVERT_FLAG;
|
||
|
+#endif
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
--
|
||
|
2.16.4
|
||
|
|