|
@@ -174,6 +174,20 @@ Moderator.prototype.createConferenceIq = function () {
|
174
|
174
|
value: true
|
175
|
175
|
}).up();
|
176
|
176
|
//}
|
|
177
|
+ if (this.options.conference.enableLipSync !== undefined) {
|
|
178
|
+ elem.c(
|
|
179
|
+ 'property', {
|
|
180
|
+ name: 'enableLipSync',
|
|
181
|
+ value: this.options.conference.enableLipSync
|
|
182
|
+ }).up();
|
|
183
|
+ }
|
|
184
|
+ if (this.options.conference.audioPacketDelay !== undefined) {
|
|
185
|
+ elem.c(
|
|
186
|
+ 'property', {
|
|
187
|
+ name: 'audioPacketDelay',
|
|
188
|
+ value: this.options.conference.audioPacketDelay
|
|
189
|
+ }).up();
|
|
190
|
+ }
|
177
|
191
|
if (this.options.conference.startBitrate) {
|
178
|
192
|
elem.c(
|
179
|
193
|
'property', {
|