* 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:
Seth Call 2015-02-25 16:15:41 -06:00
parent 947d649f5f
commit 6b795695ee
1 changed files with 5 additions and 1 deletions

View File

@ -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;