Bug 1902115 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

`VideoFrameCopyToOptions` has to be updated to meet the latest spec:
```
dictionary VideoFrameCopyToOptions {
  DOMRectInit rect;
  sequence<PlaneLayout> layout;
  VideoPixelFormat format;
  PredefinedColorSpace colorSpace;
};
```
The spec was changed in https://github.com/w3c/webcodecs/pull/754
[`VideoFrameCopyToOptions`](https://searchfox.org/mozilla-central/rev/346ac9335cbc33e3124a4541c938a0dc455e785e/dom/webidl/VideoFrame.webidl#107) has to be updated to meet the latest spec:
```
dictionary VideoFrameCopyToOptions {
  DOMRectInit rect;
  sequence<PlaneLayout> layout;
  VideoPixelFormat format;
  PredefinedColorSpace colorSpace;
};
```
The spec was changed in https://github.com/w3c/webcodecs/pull/754

The WIP is in https://github.com/ChunMinChang/gecko-dev/tree/b1902115

Back to Bug 1902115 Comment 1