-
Notifications
You must be signed in to change notification settings - Fork 0
/
SettingsUnit.dfm
203 lines (203 loc) · 3.99 KB
/
SettingsUnit.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
object SettingsForm: TSettingsForm
Left = 0
Top = 0
BorderStyle = bsDialog
Caption = ' Settings'
ClientHeight = 317
ClientWidth = 346
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 8
Width = 162
Height = 13
Caption = 'Integrated reference level (LUFS)'
end
object Label2: TLabel
Left = 8
Top = 35
Width = 107
Height = 13
Caption = 'Allowed deviation (LU)'
end
object Label3: TLabel
Left = 8
Top = 62
Width = 108
Height = 13
Caption = 'True peak level (dBTP)'
end
object Label4: TLabel
Left = 8
Top = 89
Width = 101
Height = 13
Caption = 'Buffer size (seconds)'
end
object AfterGainLabel: TLabel
Left = 27
Top = 203
Width = 112
Height = 13
Caption = '(after gain adjustment)'
end
object OversampleCheckBox: TCheckBox
Left = 8
Top = 120
Width = 97
Height = 17
Caption = '4x oversample'
TabOrder = 0
OnClick = OversampleCheckBoxClick
end
object MethodComboBox: TComboBox
Left = 8
Top = 150
Width = 329
Height = 21
AutoComplete = False
Style = csDropDownList
ItemHeight = 13
TabOrder = 1
Items.Strings = (
'Best Sinc Interpolator'
'Medium Sinc Interpolator'
'Fastest Sinc Interpolator')
end
object OKBitBtn: TBitBtn
Left = 8
Top = 280
Width = 328
Height = 25
TabOrder = 2
OnClick = OKBitBtnClick
Kind = bkOK
end
object RefLevelEdit: TEdit
Left = 239
Top = 5
Width = 81
Height = 21
TabOrder = 3
Text = '0'
end
object DeviationMaskEdit: TMaskEdit
Left = 240
Top = 32
Width = 80
Height = 21
EditMask = '!0.000;1;_'
MaxLength = 5
TabOrder = 4
Text = ' . '
end
object TruePeakEdit: TEdit
Left = 239
Top = 59
Width = 81
Height = 21
TabOrder = 5
Text = '0'
end
object BufferSizeEdit: TEdit
Left = 239
Top = 86
Width = 81
Height = 21
TabOrder = 6
Text = '1'
end
object RefLevelUpDown: TUpDown
Left = 320
Top = 5
Width = 16
Height = 21
Associate = RefLevelEdit
Min = -99
Max = 0
TabOrder = 7
end
object TruePeakUpDown: TUpDown
Left = 320
Top = 59
Width = 16
Height = 21
Associate = TruePeakEdit
Min = -99
Max = 0
TabOrder = 8
end
object BufferSizeUpDown: TUpDown
Left = 320
Top = 86
Width = 16
Height = 21
Associate = BufferSizeEdit
Min = 1
Max = 999
Position = 1
TabOrder = 9
end
object SkipOversamplingCheckBox: TCheckBox
Left = 8
Top = 188
Width = 225
Height = 17
Caption = 'Skip oversampling if linear peak <= (dBFS)'
TabOrder = 10
OnClick = SkipOversamplingCheckBoxClick
end
object SkipPeakEdit: TEdit
Left = 239
Top = 186
Width = 82
Height = 21
ReadOnly = True
TabOrder = 11
Text = '-1'
end
object SkipPeakUpDown: TUpDown
Left = 321
Top = 186
Width = 16
Height = 21
Associate = SkipPeakEdit
Min = -99
Max = -1
Position = -1
TabOrder = 12
end
object DoNotCheckAgainCheckBox: TCheckBox
Left = 8
Top = 222
Width = 289
Height = 17
Caption = 'Do not check again after gain adjustment'
TabOrder = 13
end
object PriorityComboBox: TComboBox
Left = 8
Top = 245
Width = 328
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 14
Items.Strings = (
'Above normal priority'
'Below normal priority'
'High priority'
'Idle priority'
'Normal priority'
'Realtime priority')
end
end