⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 276495 in webkit


Ignore:
Timestamp:
Apr 23, 2021, 6:29:26 AM (5 years ago)
Author:
Philippe Normand
Message:

Unreviewed, GStreamer follow-up after r276493

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::createGSTPlayBin): Remove spurious adoptGRef call, as
this is not transfer-full.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r276493 r276495  
     12021-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
    192021-04-23  Philippe Normand  <pnormand@igalia.com>
    210
  • trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp

    r276493 r276495  
    27012701    static Atomic<uint32_t> pipelineId;
    27022702
    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());
    27042704    if (!m_pipeline) {
    27052705        GST_WARNING("%s not found, make sure to install gst-plugins-base", playbinName);
Note: See TracChangeset for help on using the changeset viewer.