Changeset 286644 in webkit
- Timestamp:
- Dec 7, 2021, 10:43:30 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/mediastream/RealtimeOutgoingVideoSource.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r286643 r286644 1 2021-12-07 Youenn Fablet <youenn@apple.com> 2 3 Add logging to RealtimeOutgoingVideoSource creation 4 https://bugs.webkit.org/show_bug.cgi?id=233929 5 6 Reviewed by Eric Carlson. 7 8 This will allow to identify when trying to start sending video. 9 No change of behavior. 10 11 * platform/mediastream/RealtimeOutgoingVideoSource.cpp: 12 (WebCore::RealtimeOutgoingVideoSource::RealtimeOutgoingVideoSource): 13 (WebCore::RealtimeOutgoingVideoSource::setSource): 14 1 15 2021-12-07 Antoine Quint <graouts@webkit.org> 2 16 -
trunk/Source/WebCore/platform/mediastream/RealtimeOutgoingVideoSource.cpp
r282755 r286644 53 53 #endif 54 54 { 55 ALWAYS_LOG(LOGIDENTIFIER); 55 56 } 56 57 … … 83 84 ASSERT(!m_videoSource->hasObserver(*this)); 84 85 m_videoSource = WTFMove(newSource); 86 87 ALWAYS_LOG(LOGIDENTIFIER, "track ", m_videoSource->logIdentifier()); 85 88 86 89 if (!m_areSinksAskingToApplyRotation)
Note:
See TracChangeset
for help on using the changeset viewer.