RESOLVED FIXED 208046
[GStreamer][WPE] Add GstGLMemoryEGL support for the video-plane-display
https://bugs.webkit.org/show_bug.cgi?id=208046
Summary [GStreamer][WPE] Add GstGLMemoryEGL support for the video-plane-display
Philippe Normand
Reported 2020-02-21 02:05:55 PST
Also ensure the stride is valid.
Attachments
Patch (4.05 KB, patch)
2020-02-21 02:09 PST, Philippe Normand
no flags
Patch (4.06 KB, patch)
2020-02-21 03:23 PST, Philippe Normand
zan: review+
Philippe Normand
Comment 1 2020-02-21 02:09:44 PST
Philippe Normand
Comment 2 2020-02-21 03:23:50 PST
Zan Dobersek
Comment 3 2020-02-21 03:43:37 PST
Comment on attachment 391390 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=391390&action=review > Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:224 > + if (hasDMABuf() && (m_dmabufStride == -1)) { Extra parentheses not necessary, but OK. > Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:226 > + m_isMapped = gst_video_frame_map(&m_videoFrame, &videoInfo, m_buffer.get(), GST_MAP_READ); > + RELEASE_ASSERT(m_isMapped); Is this really a given? or can it fail in some obscure fashion, now or in the future?
Philippe Normand
Comment 4 2020-02-24 01:10:45 PST
(In reply to Zan Dobersek from comment #3) > > Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:226 > > + m_isMapped = gst_video_frame_map(&m_videoFrame, &videoInfo, m_buffer.get(), GST_MAP_READ); > > + RELEASE_ASSERT(m_isMapped); > > Is this really a given? or can it fail in some obscure fashion, now or in > the future? It can fail indeed, especially if no video meta is attached to the buffer. I'll relax this ASSERT.
Philippe Normand
Comment 5 2020-02-24 01:14:08 PST
Radar WebKit Bug Importer
Comment 6 2020-02-24 01:15:16 PST
Note You need to log in before you can comment on or make changes to this bug.