You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
whether the webcodecs has reserved byes in input encodedVideoChunk ?
decode: Input the crop information of one video frame and transparently transmit the crop information in output .
such as:
(1) input:
const chunk = new EncodedVideoChunk({ data, timestamp, type, reserve:8, // reserved bytes that we could transmit to output. })
decodeobj.decode(chunk);
(2) output
output(frame){
let timestamp = frame.timestamp;
let cropwidth = frame.reserver;
}
The text was updated successfully, but these errors were encountered:
whether the webcodecs has reserved byes in input encodedVideoChunk ?
decode: Input the crop information of one video frame and transparently transmit the crop information in output .
such as:
(1) input:
const chunk =
new EncodedVideoChunk({ data, timestamp, type, reserve:8, // reserved bytes that we could transmit to output. })
decodeobj.decode(chunk);
(2) output
output(frame){
let timestamp = frame.timestamp;
let cropwidth = frame.reserver;
}
The text was updated successfully, but these errors were encountered: