Changeset 259643 in webkit
- Timestamp:
- Apr 7, 2020, 9:38:32 AM (6 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
r259641 r259643 1 2020-04-07 Alicia Boya García <aboya@igalia.com> 2 3 [GStreamer] Log a warning if playbin is not found 4 https://bugs.webkit.org/show_bug.cgi?id=210112 5 6 Reviewed by Philippe Normand. 7 8 I spent quite a bit of time looking in the debugger for what ended up 9 being a trivial configuration issue because there was no logging 10 showing any obvious problem. Let's add it. 11 12 * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: 13 (WebCore::MediaPlayerPrivateGStreamer::isAvailable): 14 1 15 2020-04-07 Adrian Perez de Castro <aperez@igalia.com> 2 16 -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
r259113 r259643 549 549 // FIXME: This has not been updated for the playbin3 switch. 550 550 GRefPtr<GstElementFactory> factory = adoptGRef(gst_element_factory_find("playbin")); 551 if (!factory) 552 GST_WARNING("Couldn't find a factory for the playbin element. Media playback will be disabled."); 551 553 return factory; 552 554 }
Note:
See TracChangeset
for help on using the changeset viewer.