root/trunk/libffado/support/mixer/mixer_edirolfa66.py

Revision 1361, 3.7 kB (checked in by ppalmers, 15 years ago)

Merge 2.0 branch changes.

svn merge -r1349:HEAD svn+ssh://ffadosvn@ffado.org/ffado/branches/libffado-2.0

Line 
1 #
2 # Copyright (C) 2005-2008 by Daniel Wagner
3 #
4 # This file is part of FFADO
5 # FFADO = Free Firewire (pro-)audio drivers for linux
6 #
7 # FFADO is based upon FreeBoB.
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 2 of the License, or
12 # (at your option) version 3 of the License.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 #
22
23 from qt import *
24 from mixer_edirolfa66ui import *
25
26 class EdirolFa66Control(EdirolFa66ControlUI):
27     def __init__(self, parent = None, name = None, fl = 0):
28         EdirolFa66ControlUI.__init__(self, parent, name, fl)
29
30     def setVolumeIn1(self, vol):
31         self.setValue('vol1', vol)
32
33     def setVolumeIn2(self, vol):
34         self.setValue('vol2', vol)
35
36     def setVolumeIn3(self, vol):
37         self.setValue('vol3', vol)
38
39     def setVolumeIn4(self, vol):
40         self.setValue('vol4', vol)
41
42     def setVolumeIn5(self, vol):
43         self.setValue('vol5', vol)
44
45     def setVolumeIn6(self, vol):
46         self.setValue('vol6', vol)
47
48     def setBalanceIn1(self, bal):
49         self.setValue('bal1', bal)
50
51     def setBalanceIn2(self, bal):
52         self.setValue('bal2', bal)
53
54     def setBalanceIn3(self, bal):
55         self.setValue('bal3', bal)
56
57     def setBalanceIn4(self, bal):
58         self.setValue('bal4', bal)
59
60     def setBalanceIn5(self, bal):
61         self.setValue('bal5', bal)
62
63     def setBalanceIn6(self, bal):
64         self.setValue('bal6', bal)
65
66     def setValue(self, name, val):
67         val = -val
68         ctrl = self.VolumeControls[name]
69         print "setting %s to %d" % (name, val)
70         self.hw.setContignuous(ctrl[0], val, idx = ctrl[1])
71
72     def init(self):
73         print "Init Edirol FA-66 window"
74
75         self.VolumeControls = {
76             #          feature name, channel, qt slider
77             'vol1'  :   ['/Mixer/Feature_Volume_1', 1, self.sldInput1],
78             'vol2'  :   ['/Mixer/Feature_Volume_1', 2, self.sldInput2],
79             'vol3'  :   ['/Mixer/Feature_Volume_2', 1, self.sldInput3],
80             'vol4'  :   ['/Mixer/Feature_Volume_2', 2, self.sldInput4],
81             'vol5'  :   ['/Mixer/Feature_Volume_3', 1, self.sldInput5],
82             'vol6'  :   ['/Mixer/Feature_Volume_3', 2, self.sldInput6],
83
84             'bal1'  :   ['/Mixer/Feature_LRBalance_1', 1, self.sldBal1],
85             'bal2'  :   ['/Mixer/Feature_LRBalance_1', 2, self.sldBal2],
86             'bal3'  :   ['/Mixer/Feature_LRBalance_2', 1, self.sldBal3],
87             'bal4'  :   ['/Mixer/Feature_LRBalance_2', 2, self.sldBal4],
88             'bal5'  :   ['/Mixer/Feature_LRBalance_3', 1, self.sldBal5],
89             'bal6'  :   ['/Mixer/Feature_LRBalance_3', 2, self.sldBal6],
90             }
91
92     def initValues(self):
93         for name, ctrl in self.VolumeControls.iteritems():
94             val = self.hw.getContignuous(ctrl[0], idx = ctrl[1])
95             print "%s value is %d" % (name , val)
96
97             # Workaround: The current value is not properly initialized
98             # on the device and returns after bootup always 0.
99             # Though we happen to know what the correct value should
100             # be therefore we overwrite the 0
101             if name[0:3] == 'bal' and val == 0:
102                 if ctrl[1] == 1:
103                     val = 32512
104                 else:
105                     val = -32768
106                    
107             ctrl[2].setValue(-val)
Note: See TracBrowser for help on using the browser.