We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8faf17c commit a2ccbe3Copy full SHA for a2ccbe3
explainer.md
@@ -119,7 +119,7 @@ of an encoded frame and adds 4 bytes of padding.
119
flush() {},
120
async transform(encodedFrame, controller) {
121
// Reconstruct the original frame.
122
- let view = new DataView(encodedFrame.data);
+ const view = new DataView(encodedFrame.data);
123
124
// Ignore the last 4 bytes
125
let newData = new ArrayBuffer(encodedFrame.data.byteLength - 4);
@@ -312,4 +312,3 @@ in how the processing elements could be implemented.
312
313
314
315
-
0 commit comments