Changeset 245407 in webkit


Ignore:
Timestamp:
May 16, 2019 2:50:05 PM (5 years ago)
Author:
youenn@apple.com
Message:

CoreAudioCaptureSource should be marked as an audio capture track
https://bugs.webkit.org/show_bug.cgi?id=197953
<rdar://problem/50552007>

Reviewed by Eric Carlson.

Manually tested.

  • platform/mediastream/mac/CoreAudioCaptureSource.h:

Mark it as microphone so that it can get muted properly.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r245401 r245407  
     12019-05-16  Youenn Fablet  <youenn@apple.com>
     2
     3        CoreAudioCaptureSource should be marked as an audio capture track
     4        https://bugs.webkit.org/show_bug.cgi?id=197953
     5        <rdar://problem/50552007>
     6
     7        Reviewed by Eric Carlson.
     8
     9        Manually tested.
     10
     11        * platform/mediastream/mac/CoreAudioCaptureSource.h:
     12        Mark it as microphone so that it can get muted properly.
     13
    1142019-05-16  Alex Christensen  <achristensen@webkit.org>
    215
  • trunk/Source/WebCore/platform/mediastream/mac/CoreAudioCaptureSource.h

    r243033 r245407  
    9393
    9494    bool interrupted() const final;
     95    CaptureDevice::DeviceType deviceType() const final { return CaptureDevice::DeviceType::Microphone; }
    9596
    9697    void initializeToStartProducingData();
Note: See TracChangeset for help on using the changeset viewer.