Changeset 244949 in webkit


Ignore:
Timestamp:
May 4, 2019 10:51:12 AM (5 years ago)
Author:
youenn@apple.com
Message:

Convert some RealtimeOutgoingVideoSourceCocoa logging to ERROR_LOG
https://bugs.webkit.org/show_bug.cgi?id=197549

Reviewed by Eric Carlson.

No change of behavior.

  • platform/mediastream/mac/RealtimeOutgoingVideoSourceCocoa.mm:

(WebCore::RealtimeOutgoingVideoSourceCocoa::rotatePixelBuffer):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r244947 r244949  
     12019-05-04  Youenn Fablet  <youenn@apple.com>
     2
     3        Convert some RealtimeOutgoingVideoSourceCocoa logging to ERROR_LOG
     4        https://bugs.webkit.org/show_bug.cgi?id=197549
     5
     6        Reviewed by Eric Carlson.
     7
     8        No change of behavior.
     9
     10        * platform/mediastream/mac/RealtimeOutgoingVideoSourceCocoa.mm:
     11        (WebCore::RealtimeOutgoingVideoSourceCocoa::rotatePixelBuffer):
     12
    1132019-05-03  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/platform/mediastream/mac/RealtimeOutgoingVideoSourceCocoa.mm

    r240120 r244949  
    7676        auto status = VTImageRotationSessionCreate(kCFAllocatorDefault, rotation, &rawRotationSession);
    7777        if (status != noErr) {
    78             ALWAYS_LOG(LOGIDENTIFIER, "Failed creating a rotation session with error ", status);
     78            ERROR_LOG(LOGIDENTIFIER, "Failed creating a rotation session with error ", status);
    7979            return nullptr;
    8080        }
     
    101101
    102102        if (status != kCVReturnSuccess) {
    103             ALWAYS_LOG(LOGIDENTIFIER, "Failed creating a pixel buffer pool with error ", status);
     103            ERROR_LOG(LOGIDENTIFIER, "Failed creating a pixel buffer pool with error ", status);
    104104            return nullptr;
    105105        }
     
    115115
    116116    if (status != kCVReturnSuccess) {
    117         ALWAYS_LOG(LOGIDENTIFIER, "Failed creating a pixel buffer with error ", status);
     117        ERROR_LOG(LOGIDENTIFIER, "Failed creating a pixel buffer with error ", status);
    118118        return nullptr;
    119119    }
     
    123123
    124124    if (status != noErr) {
    125         ALWAYS_LOG(LOGIDENTIFIER, "Failed rotating with error ", status);
     125        ERROR_LOG(LOGIDENTIFIER, "Failed rotating with error ", status, " for rotation ", m_currentRotation);
    126126        return nullptr;
    127127    }
Note: See TracChangeset for help on using the changeset viewer.