Skip to content

Commit

Permalink
fix: remove numeric symbols as its not compatible with metro for reac…
Browse files Browse the repository at this point in the history
…t-native

ref: facebook/metro#645
  • Loading branch information
santhoshvai committed Nov 7, 2022
1 parent 79317be commit efcaa45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/client/src/rtc/codecs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ export const defaultVideoPublishEncodings: RTCRtpEncodingParameters[] = [
{
rid: 'f',
active: true,
maxBitrate: 1_280_000,
maxBitrate: 1280000,
},
{
rid: 'h',
active: true,
scaleResolutionDownBy: 2.0,
maxBitrate: 768_000,
maxBitrate: 768000,
},
{
rid: 'q',
active: true,
scaleResolutionDownBy: 4.0,
maxBitrate: 384_000,
maxBitrate: 384000,
},
];

Expand Down

0 comments on commit efcaa45

Please sign in to comment.