Changeset 287928 in webkit


Ignore:
Timestamp:
Jan 12, 2022, 9:57:25 AM (4 years ago)
Author:
youenn@apple.com
Message:

VP9-SVS no video stream from remote peer on some devices
https://bugs.webkit.org/show_bug.cgi?id=231074
<rdar://problem/84024646>

Reviewed by Eric Carlson.

  • Source/webrtc/sdk/objc/components/video_codec/RTCDefaultVideoDecoderFactory.m:

(-[RTCDefaultVideoDecoderFactory initWithH265:vp9Profile0:vp9Profile2:vp9VTB:]):
Do not use VTIsHardwareDecodeSupported('vp09') to know whether WebProcess can use VTB since sandboxing can control this.

Location:
trunk/Source/ThirdParty/libwebrtc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/libwebrtc/ChangeLog

    r287848 r287928  
     12022-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
    1132022-01-10  Alex Christensen  <achristensen@webkit.org>
    214
  • trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/objc/components/video_codec/RTCDefaultVideoDecoderFactory.m

    r270256 r287928  
    4242      _supportsVP9Profile2 = supportsVP9Profile2;
    4343      // Use kCMVideoCodecType_VP9 once added to CMFormatDescription.h
    44       _supportsVP9VTB = (supportsVP9Profile0 || supportsVP9Profile2) && (supportsVP9VTB || VTIsHardwareDecodeSupported('vp09'));
    45 ;
     44      _supportsVP9VTB = (supportsVP9Profile0 || supportsVP9Profile2) && supportsVP9VTB;
     45
    4646  }
    4747  return self;
Note: See TracChangeset for help on using the changeset viewer.