* VRFS-2753 - assign volume left over volume right to ensure both mono and stereo backend inputs get the data they need
This commit is contained in:
parent
947d649f5f
commit
6b795695ee
|
|
@ -2140,7 +2140,11 @@
|
|||
context.trackVolumeObject.name = mixer.name;
|
||||
context.trackVolumeObject.record = mixer.record;
|
||||
context.trackVolumeObject.volL = mixer.volume_left;
|
||||
context.trackVolumeObject.volR = mixer.volume_right;
|
||||
|
||||
// today we treat all tracks as mono, but this is required to make a stereo track happy
|
||||
//context.trackVolumeObject.volR = mixer.volume_right;
|
||||
context.trackVolumeObject.volR = mixer.volume_left;
|
||||
|
||||
context.trackVolumeObject.loop = mixer.loop;
|
||||
// trackVolumeObject doesn't have a place for range min/max
|
||||
currentMixerRangeMin = mixer.range_low;
|
||||
|
|
|
|||
Loading…
Reference in New Issue