Changeset 264226 in webkit
- Timestamp:
- Jul 10, 2020, 9:59:05 AM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r264225 r264226 1 2020-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 1 8 2020-07-10 Philippe Normand <pnormand@igalia.com> 2 9 -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
r264225 r264226 1773 1773 1774 1774 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)); 1776 1776 } 1777 1777
Note:
See TracChangeset
for help on using the changeset viewer.