fix(rn,config) fix forcing VP8 for bridge calls

This commit is contained in:
Saúl Ibarra Corretgé 2022-10-24 09:41:03 +02:00 committed by Saúl Ibarra Corretgé
parent db6165209b
commit 33ec975e19
1 changed files with 4 additions and 1 deletions

View File

@ -54,7 +54,10 @@ const INITIAL_RN_STATE: IConfig = {
},
videoQuality: {
preferredCodec: 'VP8'
// FIXME: Mobile codecs should probably be configurable separately, rather
// than requiring this override here...
enforcePreferredCodec: true,
preferredCodec: 'vp8'
}
};