fix(rn) makes the preferedCode vp8 and enabled p2p

pull/12910/head jitsi-meet_8313
Titus Moldovan 2 years ago committed by Saúl Ibarra Corretgé
parent 04a41395c8
commit 8fcfd7a308
  1. 4
      react/features/base/config/middleware.ts
  2. 4
      react/features/base/config/reducer.ts

@ -52,9 +52,7 @@ function _setConfig({ dispatch, getState }: IStore, next: Function, action: AnyA
const settings = state['features/base/settings'];
const config: IConfig = {};
// FIXME: P2P is currently temporality disabled on mobile.
// eslint-disable-next-line no-constant-condition
if (false && typeof settings.disableP2P !== 'undefined') {
if (typeof settings.disableP2P !== 'undefined') {
config.p2p = { enabled: !settings.disableP2P };
}

@ -57,10 +57,8 @@ const INITIAL_RN_STATE: IConfig = {
// than requiring this override here...
p2p: {
// Temporarily disable P2P on mobile while we sort out some (codec?) issues.
enabled: false,
disabledCodec: 'vp9',
preferredCodec: 'h264'
preferredCodec: 'vp8'
},
videoQuality: {

Loading…
Cancel
Save