youennf
youennf
#### f1c0b624fdff2bb0bcb0b5ef95c4a48cf000dc2c Add inspector console logging in case of worker script loader failure https://bugs.webkit.org/show_bug.cgi?id=245530 rdar://problem/100285306 Reviewed by NOBODY (OOPS!). Inspector console error messages will help web developers fiugre out what...
#### 9d24bf5d7d8d16ed8c4aca86018b19291661dbb6 DOMCache should use ObjectIdentifier https://bugs.webkit.org/show_bug.cgi?id=245378 rdar://problem/100146730 Reviewed by NOBODY (OOPS!). Move from uint64_t to DOMCacheIdentifier to identify DOMCache. Update WebCore and WebKit structures, as well as the IPC...
#### 0a2ab26a2e14faef5e4cd3f656f1b99daaee87f1 Enable OffscreenCanvas compilation flag for macOS and iOS ports https://bugs.webkit.org/show_bug.cgi?id=246456 rdar://problem/101124067 Reviewed by NOBODY (OOPS!). Enable the compilation flag for macOS and iOS ports. Fix the WebCodecs code...
#### 274c14ac6cd5388cbe3ba5f6a08424635e10f67a worker and other values are valid keyword for the 'as' property in link preload https://bugs.webkit.org/show_bug.cgi?id=245415 rdar://problem/100161255 Reviewed by NOBODY (OOPS!). Update binding generator code to allow exposing a...
#### 4f2a3be340f36e4c9f161fa1f9974634a925bb26 Close WebCodecsVideo remote decoders in case of failure https://bugs.webkit.org/show_bug.cgi?id=246449 rdar://problem/101118814 Reviewed by NOBODY (OOPS!). Update RTC decoders to return an asynchronous error by calling the callback with an...
#### ba82fafafd19ff47c90d9f1de0215dc1ccb07e38 Display can go to sleep for video conference websites that do not use HTMLMediaElement https://bugs.webkit.org/show_bug.cgi?id=245726 rdar://100423979 Reviewed by NOBODY (OOPS!). When page is playing audio but we do...
#### 2818372c8d21038f933e5897aec08549f8fed302 Canvas should be able to draw a WebCodecsVideoFrame https://bugs.webkit.org/show_bug.cgi?id=246392 rdar://problem/101066016 Reviewed by NOBODY (OOPS!). Make sure to create a correct WebCodecsVideoFrame from canvas. Update IDL and binding code...
Should media capabilities influence what is exposed in what is exposed in WebRTC offers and answers
WebRTC implementations currently tend to expose the whole list of codecs that are available. On contrary media capabilities is telling whether a particular codec is supported. For some codecs, like...
An example is: ``` If selectedCandidatePairChanged is true, [fire an event](https://dom.spec.whatwg.org/#concept-event-fire) named [selectedcandidatepairchange](https://w3c.github.io/webrtc-pc/#event-icetransport-selectedcandidatepairchange) at transport. If transportIceConnectionStateChanged is true, [fire an event](https://dom.spec.whatwg.org/#concept-event-fire) named [statechange](https://w3c.github.io/webrtc-pc/#event-icetransport-statechange) at transport. ``` The question is...
Remote tracks width and height settings (aspectRatio as well) are defined in terms of width/height of the last received video frame. I wonder whether CVO information should be taken into...