Cellular call audio getting played in Speaker after using getusermedia
Reported by
mr.shyam...@gmail.com,
Sep 19 2016
|
||
Issue description
Example URL:
Steps to reproduce the problem:
1. Call getusermedia
navigator.mediaDevices.getUserMedia({video:false, audio:true}).then(function (stream) {
lLocalStream = stream;
}).catch(function (err) {
});
2. Stop the track
if (lLocalStream && lLocalStream.getTracks) {
tracks = lLocalStream.getTracks();
for (i = 0, len = tracks.length; i < len; i += 1) {
tracks[i].stop();
}
}
lLocalStream = null;
3. Receive and attend a Cellular Call
What is the expected behavior?
Cellular call Voice to be played in Earpiece
What went wrong?
Observation:-
Cellular call Voice getting played in Speaker instead of device speaker
Did this work before? N/A
Is it a problem with Flash or HTML5? HTML5
Does this work in other browsers? N/A
Chrome version: 54.0.2840.25 Channel: beta
OS Version: 5.0
Flash Version:
,
Jul 11
|
||
►
Sign in to add a comment |
||
Comment 1 by candr...@chromium.org
, Sep 20 2016