Changeset 286965 in webkit
- Timestamp:
- Dec 13, 2021, 12:12:23 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/mediastream/mac/CoreAudioCaptureSource.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r286962 r286965 1 2021-12-13 Youenn Fablet <youenn@apple.com> 2 3 Fix buggy assert in CoreAudioSharedUnit::setupAudioUnit 4 https://bugs.webkit.org/show_bug.cgi?id=234151 5 6 Reviewed by Eric Carlson. 7 8 Add the source as a client to the unit before reconfiguring the unit, 9 this makes the ASSERT(hasClients()) actually valid. 10 Manually tested. 11 12 * platform/mediastream/mac/CoreAudioCaptureSource.cpp: 13 1 14 2021-12-13 Nikolas Zimmermann <nzimmermann@igalia.com> 2 15 -
trunk/Source/WebCore/platform/mediastream/mac/CoreAudioCaptureSource.cpp
r286650 r286965 763 763 unit.setVolume(volume()); 764 764 765 unit.addClient(*this); 766 765 767 if (shouldReconfigure) 766 768 unit.reconfigure(); 767 768 unit.addClient(*this);769 769 } 770 770
Note:
See TracChangeset
for help on using the changeset viewer.