* VRFS-3136 - make sure the 'preferred' is chosen for device, so set the FTUE preferred sample mode
This commit is contained in:
parent
7dec27083b
commit
7d313b2298
|
|
@ -59,6 +59,10 @@
|
|||
}
|
||||
function FTUESetMusicProfileName() {
|
||||
|
||||
}
|
||||
|
||||
function FTUESetPreferredMixerSampleRate() {
|
||||
|
||||
}
|
||||
|
||||
function FTUESelectVideoCaptureDevice(device, settings) {
|
||||
|
|
@ -1040,6 +1044,7 @@
|
|||
this.FTUEPageLeave = FTUEPageLeave;
|
||||
this.FTUEGetMusicProfileName = FTUEGetMusicProfileName;
|
||||
this.FTUESetMusicProfileName = FTUESetMusicProfileName;
|
||||
this.FTUESetPreferredMixerSampleRate = FTUESetPreferredMixerSampleRate;
|
||||
this.FTUEGetInputLatency = FTUEGetInputLatency;
|
||||
this.FTUEGetInputVolume = FTUEGetInputVolume;
|
||||
this.FTUEGetMusicInputs = FTUEGetMusicInputs;
|
||||
|
|
|
|||
|
|
@ -80,6 +80,7 @@
|
|||
var newProfileName = 'FTUEAttempt-' + new Date().getTime().toString();
|
||||
logger.debug("setting FTUE-prefixed profile name to: " + newProfileName);
|
||||
context.jamClient.FTUESetMusicProfileName(newProfileName);
|
||||
context.jamClient.FTUESetPreferredMixerSampleRate(1);
|
||||
context.jamClient.FTUEClearChannelAssignments();
|
||||
newSession();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue