Changeset 276495 in webkit
- Timestamp:
- Apr 23, 2021, 6:29:26 AM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r276493 r276495 1 2021-04-23 Philippe Normand <pnormand@igalia.com> 2 3 Unreviewed, GStreamer follow-up after r276493 4 5 * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: 6 (WebCore::MediaPlayerPrivateGStreamer::createGSTPlayBin): Remove spurious adoptGRef call, as 7 this is not transfer-full. 8 1 9 2021-04-23 Philippe Normand <pnormand@igalia.com> 2 10 -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
r276493 r276495 2701 2701 static Atomic<uint32_t> pipelineId; 2702 2702 2703 m_pipeline = adoptGRef(gst_element_factory_make(playbinName, makeString(type, elementId, '-', pipelineId.exchangeAdd(1)).ascii().data()));2703 m_pipeline = gst_element_factory_make(playbinName, makeString(type, elementId, '-', pipelineId.exchangeAdd(1)).ascii().data()); 2704 2704 if (!m_pipeline) { 2705 2705 GST_WARNING("%s not found, make sure to install gst-plugins-base", playbinName);
Note:
See TracChangeset
for help on using the changeset viewer.