et 1-st input channel to 3-rd position
'Before call
' input output
' 1 -> 1
' 2 -> 2
' 3 -> 3
track.TrackChannelOrderSet(1, 0, 2)
' After call
' input output
' 3 -> 1
' 2 -> 2
' 1 -> 3
et 3-rd output channel to 2-nd position
'Before call
' input output
' 1 -> 1
' 2 -> 2
' 3 -> 3
track.TrackChannelOrderSet(0, 2, 1)
' After call
' input output
' 3 -> 3
' 2 -> 2
' 1 -> 1
//Set 1-st input channel to 3-rd position
//Before call
// input output
// 1 -> 1
// 2 -> 2
// 3 -> 3
track.TrackChannelOrderSet(1, 0, 2);
// After call
// input output
// 3 -> 1
// 2 -> 2
// 1 -> 3
//Set 3-rd output channel to 2-nd position
//Before call
// input output
// 1 -> 1
// 2 -> 2
// 3 -> 3
track.TrackChannelOrderSet(0, 2, 1);
// After call
// input output
// 3 -> 3
// 2 -> 2
// 1 -> 1
//Set 1-st input channel to 3-rd position
//Before call
// input output
// 1 -> 1
// 2 -> 2
// 3 -> 3
track.TrackChannelOrderSet(1, 0, 2);
// After call
// input output
// 3 -> 1
// 2 -> 2
// 1 -> 3
//Set 3-rd output channel to 2-nd position
//Before call
// input output
// 1 -> 1
// 2 -> 2
// 3 -> 3
track.TrackChannelOrderSet(0, 2, 1);
// After call
// input output
// 3 -> 3
// 2 -> 2
// 1 -> 1