[Webkit-unassigned] [Bug 233230] [GStreamer] Webkit on ubuntu 21.10 is failing due to a missing gstreamer1.0-plugins-bad package

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Nov 17 09:34:54 PST 2021


https://bugs.webkit.org/show_bug.cgi?id=233230

--- Comment #2 from openaudible at email.tg ---
I think webkitTextCombinerNew() is called just once in the code base.

Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:2760

Current code is:

    GstElement* textCombiner = webkitTextCombinerNew();
    ASSERT(textCombiner);
    g_object_set(m_pipeline.get(), "text-stream-combiner", textCombiner, nullptr);

Crash would be in the ASSERT(textCombiner);

You might be able to change ASSERT(textCombiner); to if (textCombiner) 

The older 2.4.0 code is quite a bit different, but also just uses ASSERT... 

This does seem like a dependency issue-- when installing webkit, one of the dependences it now needs to have is the bad plugin.. I don't entirely know who made a change that ultimately broke things.

I think just having some google results when searching for the error message will be a big help.

Thanks and good luck.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20211117/e281d97c/attachment.htm>


More information about the webkit-unassigned mailing list