27 WvOut(
void ) : frameCounter_(0), clipping_(false) {};
45 virtual void tick(
const StkFloat sample ) = 0;
53 StkFloat& clipTest( StkFloat& sample );
56 unsigned long frameCounter_;
61 inline StkFloat& WvOut :: clipTest( StkFloat& sample )
68 else if ( sample < -1.0 ) {
73 if ( clip ==
true && clipping_ ==
false ) {
76 oStream_ <<
"WvOut: data value(s) outside +-1.0 detected ... clamping at outer bound!";