@@ -14,18 +14,6 @@ class ofBaseSoundInput{
1414 // / \brief Receive an audio buffer.
1515 // / \param buffer An audio buffer.
1616 virtual void audioIn ( ofSoundBuffer& buffer );
17-
18- // / \deprecated This legacy method is deprecated and will be removed.
19- // / Use void audioIn(ofSoundBuffer& buffer) instead.
20- virtual void audioIn ( float * input, int bufferSize, int nChannels, int deviceID, long unsigned long tickCount );
21-
22- // / \deprecated This legacy method is deprecated and will be removed.
23- // / Use void audioIn(ofSoundBuffer& buffer) instead.
24- virtual void audioIn ( float * input, int bufferSize, int nChannels );
25-
26- // / \deprecated This legacy method is deprecated and will be removed.
27- // / Use void audioIn(ofSoundBuffer& buffer) instead.
28- virtual void audioReceived ( float * input, int bufferSize, int nChannels ){}
2917};
3018
3119
@@ -38,18 +26,6 @@ class ofBaseSoundOutput{
3826 // / \brief Output an audio buffer.
3927 // / \param buffer An audio buffer.
4028 virtual void audioOut ( ofSoundBuffer& buffer );
41-
42- // / \deprecated This legacy method is deprecated and will be removed.
43- // / Use void audioOut(ofSoundBuffer& buffer) instead.
44- virtual void audioOut ( float * output, int bufferSize, int nChannels, int deviceID, long unsigned long tickCount );
45-
46- // / \deprecated This legacy method is deprecated and will be removed.
47- // / Use void audioOut(ofSoundBuffer& buffer) instead.
48- virtual void audioOut ( float * output, int bufferSize, int nChannels );
49-
50- // / \deprecated This legacy method is deprecated and will be removed.
51- // / Use void audioOut(ofSoundBuffer& buffer) instead.
52- virtual void audioRequested ( float * output, int bufferSize, int nChannels ){}
5329};
5430
5531// / \class ofSoundDevice
0 commit comments