Home | History | Annotate | Download | only in tools

Lines Matching refs:max_volume

9 def GenerateSimpleStep(name, max_volume, step_size):
12 print ' ; simple_step curve, max %d, step %d' % (max_volume, step_size)
15 print ' max_volume = %d' % max_volume
33 def GenerateTwoSlope(name, max_volume, step_1, step_2, pivot_point):
37 (max_volume, pivot_point, step_1, step_2))
40 WriteExplicitCurveVal(100 - i, max_volume - step_1 * i)
41 pivot_dB_val = max_volume - step_1 * (100 - pivot_point)
42 WriteExplicitCurveVal(pivot_point, max_volume - step_1 * (100 - pivot_point))
54 max_volume = int(raw_input(">"))
57 GenerateSimpleStep(jack_name, max_volume, step_size)
62 max_volume = int(raw_input(">"))
69 GenerateTwoSlope(jack_name, max_volume, step_1, step_2, pivot_point)