Changeset 248278 in webkit
- Timestamp:
- Aug 5, 2019, 4:25:45 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
platform/mediastream/RealtimeOutgoingAudioSource.h (modified) (1 diff)
-
platform/mediastream/gstreamer/RealtimeOutgoingAudioSourceLibWebRTC.h (modified) (1 diff)
-
platform/mediastream/mac/RealtimeOutgoingAudioSourceCocoa.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r248277 r248278 1 2019-08-05 Youenn Fablet <youenn@apple.com> 2 3 RealtimeOutgoingAudioSource::pullAudioData is no longer needed 4 https://bugs.webkit.org/show_bug.cgi?id=200450 5 6 Reviewed by Geoffrey Garen. 7 8 No change of behavior, removing base class method declaration. 9 10 * platform/mediastream/RealtimeOutgoingAudioSource.h: 11 (WebCore::RealtimeOutgoingAudioSource::pullAudioData): Deleted. 12 * platform/mediastream/gstreamer/RealtimeOutgoingAudioSourceLibWebRTC.h: 13 * platform/mediastream/mac/RealtimeOutgoingAudioSourceCocoa.h: 14 1 15 2019-08-05 Saam Barati <sbarati@apple.com> 2 16 -
trunk/Source/WebCore/platform/mediastream/RealtimeOutgoingAudioSource.h
r247522 r248278 75 75 void unobserveSource(); 76 76 77 virtual void pullAudioData() { }78 79 77 bool isSilenced() const { return m_muted || !m_enabled; } 80 78 -
trunk/Source/WebCore/platform/mediastream/gstreamer/RealtimeOutgoingAudioSourceLibWebRTC.h
r238951 r248278 47 47 bool hasBufferedEnoughData() final; 48 48 49 void pullAudioData() final;49 void pullAudioData(); 50 50 51 51 GUniquePtr<GstAudioConverter> m_sampleConverter; -
trunk/Source/WebCore/platform/mediastream/mac/RealtimeOutgoingAudioSourceCocoa.h
r247522 r248278 53 53 void sourceUpdated() final; 54 54 55 void pullAudioData() final;55 void pullAudioData(); 56 56 57 57 Ref<AudioSampleDataSource> m_sampleConverter;
Note:
See TracChangeset
for help on using the changeset viewer.