[RN] Move preferH264 where it will be in effect (in the future)

This commit is contained in:
Lyubo Marinov 2017-02-24 12:01:10 -06:00
parent 4cb36b0a5d
commit d6d7ce1b67
2 changed files with 12 additions and 5 deletions

View File

@ -207,7 +207,15 @@ export function createConference() {
// XXX Lib-jitsi-meet does not accept uppercase letters. // XXX Lib-jitsi-meet does not accept uppercase letters.
room.toLowerCase(), room.toLowerCase(),
{ openSctp: true }); {
openSctp: true
// FIXME I tested H.264 from iPhone 6S during a morning
// standup but, unfortunately, the other participants who
// happened to be running the Web app saw only black.
//
// preferH264: true
});
_addConferenceListeners(conference, dispatch); _addConferenceListeners(conference, dispatch);

View File

@ -39,8 +39,7 @@ const INITIAL_STATE = {
// place). Fortunately, these pieces of JavaScript currently involve // place). Fortunately, these pieces of JavaScript currently involve
// third parties and we can temporarily disable them (until we implement // third parties and we can temporarily disable them (until we implement
// an alternative to async script elements on React Native). // an alternative to async script elements on React Native).
disableThirdPartyRequests: true, disableThirdPartyRequests: true
preferH264: true
}, },
initializationError: null, initializationError: null,
initialized: false initialized: false