fix(rn,config) update to new configuration for codec selection

This commit is contained in:
Saúl Ibarra Corretgé 2021-04-15 12:49:29 +02:00 committed by Saúl Ibarra Corretgé
parent 59afafdf7c
commit 289ba6f764
1 changed files with 5 additions and 5 deletions

View File

@ -49,11 +49,11 @@ const INITIAL_RN_STATE = {
disableAudioLevels: true, disableAudioLevels: true,
p2p: { p2p: {
disableH264: false, disabledCodec: '',
preferH264: true disableH264: false, // deprecated
}, preferredCodec: 'H264',
preferH264: true // deprecated
remoteVideoMenu: {} }
}; };
ReducerRegistry.register('features/base/config', (state = _getInitialState(), action) => { ReducerRegistry.register('features/base/config', (state = _getInitialState(), action) => {