⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 286644 in webkit


Ignore:
Timestamp:
Dec 7, 2021, 10:43:30 PM (5 years ago)
Author:
youenn@apple.com
Message:

Add logging to RealtimeOutgoingVideoSource creation
https://bugs.webkit.org/show_bug.cgi?id=233929

Reviewed by Eric Carlson.

This will allow to identify when trying to start sending video.
No change of behavior.

  • platform/mediastream/RealtimeOutgoingVideoSource.cpp:

(WebCore::RealtimeOutgoingVideoSource::RealtimeOutgoingVideoSource):
(WebCore::RealtimeOutgoingVideoSource::setSource):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r286643 r286644  
     12021-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
    1152021-12-07  Antoine Quint  <graouts@webkit.org>
    216
  • trunk/Source/WebCore/platform/mediastream/RealtimeOutgoingVideoSource.cpp

    r282755 r286644  
    5353#endif
    5454{
     55    ALWAYS_LOG(LOGIDENTIFIER);
    5556}
    5657
     
    8384    ASSERT(!m_videoSource->hasObserver(*this));
    8485    m_videoSource = WTFMove(newSource);
     86
     87    ALWAYS_LOG(LOGIDENTIFIER, "track ", m_videoSource->logIdentifier());
    8588
    8689    if (!m_areSinksAskingToApplyRotation)
Note: See TracChangeset for help on using the changeset viewer.