Changeset 271227 in webkit
- Timestamp:
- Jan 7, 2021, 12:10:47 AM (6 years ago)
- Location:
- trunk/Source/ThirdParty/libwebrtc
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
Source/webrtc/rtc_base/message_digest.h (modified) (1 diff)
-
Source/webrtc/sdk/objc/components/video_codec/RTCVideoDecoderH264.mm (modified) (2 diffs)
-
Source/webrtc/sdk/objc/components/video_codec/RTCVideoEncoderH264.mm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r271150 r271227 1 2021-01-07 Youenn Fablet <youenn@apple.com> 2 3 Remove non-inclusive language from libwebrtc 4 https://bugs.webkit.org/show_bug.cgi?id=220101 5 <rdar://problem/72727968> 6 7 Reviewed by Beth Dakin. 8 9 Remove logging erroneously added in https://trac.webkit.org/changeset/271150. 10 Remove non-inclusive language from Source/webrtc/rtc_base/message_digest.h as done in 11 https://webrtc-review.googlesource.com/c/src/+/200701. 12 13 * Source/webrtc/rtc_base/message_digest.h: 14 * Source/webrtc/sdk/objc/components/video_codec/RTCVideoDecoderH264.mm: 15 (-[RTCVideoDecoderH264 init]): 16 (-[RTCVideoDecoderH264 decodeData:size:timeStamp:]): 17 * Source/webrtc/sdk/objc/components/video_codec/RTCVideoEncoderH264.mm: 18 (-[RTCVideoEncoderH264 initWithCodecInfo:]): 19 (-[RTCVideoEncoderH264 encode:codecSpecificInfo:frameTypes:]): 20 (-[RTCVideoEncoderH264 frameWasEncoded:flags:sampleBuffer:codecSpecificInfo:width:height:renderTimeMs:timestamp:rotation:isKeyFrameRequired:]): 21 1 22 2021-01-05 Youenn Fablet <youenn@apple.com> 2 23 -
trunk/Source/ThirdParty/libwebrtc/Source/webrtc/rtc_base/message_digest.h
r252473 r271227 46 46 }; 47 47 48 // A whitelist of approved digest algorithms from RFC 4572 (FIPS 180). 48 // A check that an algorithm is in a list of approved digest algorithms 49 // from RFC 4572 (FIPS 180). 49 50 bool IsFips180DigestAlgorithm(const std::string& alg); 50 51 -
trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/objc/components/video_codec/RTCVideoDecoderH264.mm
r271150 r271227 83 83 _memoryPool = CMMemoryPoolCreate(nil); 84 84 } 85 RTC_LOG(LS_ERROR) << "H264 decode init";86 85 return self; 87 86 } … … 111 110 timeStamp:(uint32_t)timeStamp { 112 111 113 RTC_LOG(LS_ERROR) << "H264 decodeData";114 112 if (_error != noErr) { 115 113 RTC_LOG(LS_WARNING) << "Last frame decode failed."; -
trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/objc/components/video_codec/RTCVideoEncoderH264.mm
r271150 r271227 378 378 _isH264LowLatencyEncoderEnabled = true; 379 379 380 RTC_LOG(LS_ERROR) << "H264 encode initWithCodecInfo";381 382 380 return self; 383 381 } … … 430 428 codecSpecificInfo:(nullable id<RTCCodecSpecificInfo>)codecSpecificInfo 431 429 frameTypes:(NSArray<NSNumber *> *)frameTypes { 432 433 RTC_LOG(LS_ERROR) << "H264 encode new frame";434 435 430 if (!_callback || ![self hasCompressionSession]) { 436 431 return WEBRTC_VIDEO_CODEC_UNINITIALIZED; … … 885 880 rotation:(RTCVideoRotation)rotation 886 881 isKeyFrameRequired:(bool)isKeyFrameRequired { 887 RTC_LOG(LS_ERROR) << "H264 encoded frame " << status;888 882 if (status != noErr) { 889 883 RTC_LOG(LS_ERROR) << "H264 encode failed with code: " << status;
Note:
See TracChangeset
for help on using the changeset viewer.