Changeset 287928 in webkit
- Timestamp:
- Jan 12, 2022, 9:57:25 AM (4 years ago)
- Location:
- trunk/Source/ThirdParty/libwebrtc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r287848 r287928 1 2022-01-12 Youenn Fablet <youenn@apple.com> 2 3 VP9-SVS no video stream from remote peer on some devices 4 https://bugs.webkit.org/show_bug.cgi?id=231074 5 <rdar://problem/84024646> 6 7 Reviewed by Eric Carlson. 8 9 * Source/webrtc/sdk/objc/components/video_codec/RTCDefaultVideoDecoderFactory.m: 10 (-[RTCDefaultVideoDecoderFactory initWithH265:vp9Profile0:vp9Profile2:vp9VTB:]): 11 Do not use VTIsHardwareDecodeSupported('vp09') to know whether WebProcess can use VTB since sandboxing can control this. 12 1 13 2022-01-10 Alex Christensen <achristensen@webkit.org> 2 14 -
trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/objc/components/video_codec/RTCDefaultVideoDecoderFactory.m
r270256 r287928 42 42 _supportsVP9Profile2 = supportsVP9Profile2; 43 43 // Use kCMVideoCodecType_VP9 once added to CMFormatDescription.h 44 _supportsVP9VTB = (supportsVP9Profile0 || supportsVP9Profile2) && (supportsVP9VTB || VTIsHardwareDecodeSupported('vp09'));45 ; 44 _supportsVP9VTB = (supportsVP9Profile0 || supportsVP9Profile2) && supportsVP9VTB; 45 46 46 } 47 47 return self;
Note:
See TracChangeset
for help on using the changeset viewer.