RESOLVED FIXED 153828
[Gstreamer] Add volume and mute support to the WebRTC mediaplayer
https://bugs.webkit.org/show_bug.cgi?id=153828
Summary [Gstreamer] Add volume and mute support to the WebRTC mediaplayer
Alejandro G. Castro
Reported 2016-02-03 03:58:34 PST
Current mediaplayer implementation does not support volume or mute.
Attachments
[OpenWebRTC] audio mute/volume support (4.94 KB, patch)
2016-11-14 09:03 PST, Philippe Normand
darin: review+
patch for landing (9.04 KB, patch)
2016-11-14 23:54 PST, Philippe Normand
no flags
Philippe Normand
Comment 1 2016-08-30 06:06:37 PDT
An OpenWebRTC patch is likely needed for this, see for instance https://github.com/EricssonResearch/openwebrtc/pull/572
Philippe Normand
Comment 2 2016-11-14 09:03:42 PST
Created attachment 294703 [details] [OpenWebRTC] audio mute/volume support Please note this depends on a OpenWebRTC patch not upstream yet.
Philippe Normand
Comment 3 2016-11-14 09:04:05 PST
Darin Adler
Comment 4 2016-11-14 09:33:16 PST
Comment on attachment 294703 [details] [OpenWebRTC] audio mute/volume support View in context: https://bugs.webkit.org/attachment.cgi?id=294703&action=review > Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.cpp:108 > + if (!m_audioTrack) > + return; > + > + Extra blank line here. > Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.cpp:109 > + auto realTimeMediaSource = reinterpret_cast<RealtimeMediaSourceOwr*>(&m_audioTrack->source()); Having to use reinterpret_cast is usually a major danger sign; is there a way to use static_cast in the three places in this file instead? I suggest making this be a reference instead of a pointer: auto& realTimeMediaSource = *some_kind_of_cast<RealtimeMediaSourceOwr&>(m_audioTrack->source()); > Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.h:77 > + void setVolume(float) override; > + void setMuted(bool) override; final instead of override?
Philippe Normand
Comment 5 2016-11-14 23:54:54 PST
Created attachment 294821 [details] patch for landing
Philippe Normand
Comment 6 2016-11-21 01:39:51 PST
Note You need to log in before you can comment on or make changes to this bug.