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 40c4171 commit a32c3a1Copy full SHA for a32c3a1
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "codec-string",
3
- "version": "0.1.9",
+ "version": "0.1.11",
4
"description": "decode the codecs= string in a media mime type",
5
"type": "module",
6
"engines": {
src/decode-hevc.js
@@ -258,7 +258,7 @@ export function decodeHEVC(val) {
258
res.push(error(`unknown Level (${tier[1]})`));
259
}
260
if (lev) {
261
- res.push({ decodes: `Level ${lev}` });
+ res.push(normal(`Level ${lev}`));
262
coding_params.level = lev;
263
264
res.push(...constraints);
0 commit comments