summaryrefslogtreecommitdiffstats
path: root/arts/modules/effects/synth_stereo_pitch_shift_impl.cc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-08 22:26:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-08 22:49:18 +0900
commit2fe8b1b92fa2a9b93fea0ed0cb62802237b82e8d (patch)
tree50b6e05734cd5c0f642eeac4e841539db25f113b /arts/modules/effects/synth_stereo_pitch_shift_impl.cc
parent6f9d8ae25c3ff607e0e07315884c967dd0bca901 (diff)
downloadtdemultimedia-2fe8b1b92fa2a9b93fea0ed0cb62802237b82e8d.tar.gz
tdemultimedia-2fe8b1b92fa2a9b93fea0ed0cb62802237b82e8d.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit fce86b22a2367f1be1f9aae5e1ba3d18d1371b74)
Diffstat (limited to 'arts/modules/effects/synth_stereo_pitch_shift_impl.cc')
-rw-r--r--arts/modules/effects/synth_stereo_pitch_shift_impl.cc51
1 files changed, 0 insertions, 51 deletions
diff --git a/arts/modules/effects/synth_stereo_pitch_shift_impl.cc b/arts/modules/effects/synth_stereo_pitch_shift_impl.cc
deleted file mode 100644
index fbf7bb07..00000000
--- a/arts/modules/effects/synth_stereo_pitch_shift_impl.cc
+++ /dev/null
@@ -1,51 +0,0 @@
-#include "flowsystem.h"
-#include "artsmoduleseffects.h"
-#include "stdsynthmodule.h"
-
-#include <artsmodulessynth.h>
-
-using namespace Arts;
-
-class Synth_STEREO_PITCH_SHIFT_impl : virtual public Synth_STEREO_PITCH_SHIFT_skel,
- virtual public StdSynthModule
-{
-protected:
- Synth_PITCH_SHIFT leftPitchShift, rightPitchShift;
-
-public:
- float speed() { return leftPitchShift.speed(); }
- void speed(float newSpeed)
- {
- leftPitchShift.speed(newSpeed);
- rightPitchShift.speed(newSpeed);
- }
-
- float frequency() { return leftPitchShift.frequency(); }
- void frequency(float newFrequency)
- {
- leftPitchShift.frequency(newFrequency);
- rightPitchShift.frequency(newFrequency);
- }
-
- void streamStart()
- {
- leftPitchShift.start();
- rightPitchShift.start();
- _node()->virtualize("inleft",leftPitchShift._node(),"invalue");
- _node()->virtualize("outleft",leftPitchShift._node(),"outvalue");
- _node()->virtualize("inright",rightPitchShift._node(),"invalue");
- _node()->virtualize("outright",rightPitchShift._node(),"outvalue");
- }
-
- void streamEnd()
- {
- _node()->devirtualize("inleft",leftPitchShift._node(),"invalue");
- _node()->devirtualize("outleft",leftPitchShift._node(),"outvalue");
- _node()->devirtualize("inright",rightPitchShift._node(),"invalue");
- _node()->devirtualize("outright",rightPitchShift._node(),"outvalue");
- leftPitchShift.stop();
- rightPitchShift.stop();
- }
-};
-
-REGISTER_IMPLEMENTATION(Synth_STEREO_PITCH_SHIFT_impl);