Skip to content

Commit

Permalink
[GStreamer] Improve a debug message
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=260993

Reviewed by Philippe Normand.

Fix: "Running GStreamer GStreamer 1.22.5, the bug fix is was"

* Source/WebCore/platform/graphics/gstreamer/GStreamerSinksWorkarounds.cpp:
(WebCore::BaseSinkPositionFlushWorkaroundProbe::checkIsNeeded):

Canonical link: https://commits.webkit.org/267548@main
  • Loading branch information
mcatanzaro committed Sep 1, 2023
1 parent b915618 commit e829b01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class BaseSinkPositionFlushWorkaroundProbe {
{
#ifndef GST_DISABLE_GST_DEBUG
GUniquePtr<char> versionString(gst_version_string());
GST_DEBUG("BaseSinkPositionFlushWorkaroundProbe: running GStreamer %s, the bug fix is was merged in 1.23 and is expected to ship in 1.24.0.", versionString.get());
GST_DEBUG("BaseSinkPositionFlushWorkaroundProbe: running %s, the bug fix was merged in 1.23 and is expected to ship in 1.24.0.", versionString.get());
#endif
WorkaroundMode mode = getWorkAroundModeFromEnvironment("WEBKIT_GST_WORKAROUND_BASE_SINK_POSITION_FLUSH", WEBKIT_GST_WORKAROUND_BASE_SINK_POSITION_FLUSH_DEFAULT_MODE);
if (mode == WorkaroundMode::ForceEnable) {
Expand Down

0 comments on commit e829b01

Please sign in to comment.