comparison view/Pane.cpp @ 154:30d624900564

* Introduce WritableWaveFileModel, and use it as an output model for audio real-time plugin transforms. Updates aren't working correctly yet.
author Chris Cannam
date Tue, 03 Oct 2006 14:17:37 +0000
parents b1a3a9400284
children 793df5f0c6cb
comparison
equal deleted inserted replaced
153:aaa3a53dbb10 154:30d624900564
142 step = 1; 142 step = 1;
143 while (pwr > 0) { 143 while (pwr > 0) {
144 step *= 2; 144 step *= 2;
145 --pwr; 145 --pwr;
146 } 146 }
147 std::cerr << level << std::endl; 147 // std::cerr << level << std::endl;
148 level += step; 148 level += step;
149 if (++count == 100 || level > 262144) break; 149 if (++count == 100 || level > 262144) break;
150 } 150 }
151 } 151 }
152 152