Changeset 264226 in webkit


Ignore:
Timestamp:
Jul 10, 2020, 9:59:05 AM (5 years ago)
Author:
Philippe Normand
Message:

[GStreamer] Unreviewed, prospective API test bot fix...

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::setVolume): I suppose changing the audio volume to 0 wasn't intended :)

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r264225 r264226  
     12020-07-10  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GStreamer] Unreviewed, prospective API test bot fix...
     4
     5        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
     6        (WebCore::MediaPlayerPrivateGStreamer::setVolume): I suppose changing the audio volume to 0 wasn't intended :)
     7
    182020-07-10  Philippe Normand  <pnormand@igalia.com>
    29
  • trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp

    r264225 r264226  
    17731773
    17741774    GST_DEBUG_OBJECT(pipeline(), "Setting volume: %f", volume);
    1775     gst_stream_volume_set_volume(m_volumeElement.get(), GST_STREAM_VOLUME_FORMAT_LINEAR, static_cast<double>(0));
     1775    gst_stream_volume_set_volume(m_volumeElement.get(), GST_STREAM_VOLUME_FORMAT_LINEAR, static_cast<double>(volume));
    17761776}
    17771777
Note: See TracChangeset for help on using the changeset viewer.