Skip to content

Commit 298f12a

Browse files
committed
Update get-codec-string.ts
1 parent 51f9192 commit 298f12a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/webcodecs/src/get-codec-string.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ export const getCodecStringForEncoder = ({
1313
height: number;
1414
width: number;
1515
}) => {
16-
console.log(chooseCorrectAvc1Profile({fps, height, width}));
1716
if (codec === 'h264') {
18-
return 'avc1.640033';
19-
// return chooseCorrectAvc1Profile({fps, height, width});
17+
return chooseCorrectAvc1Profile({fps, height, width}); // return chooseCorrectAvc1Profile({fps, height, width});
2018
}
2119

2220
if (codec === 'h265') {

0 commit comments

Comments
 (0)