Skip to content

Commit 499a407

Browse files
committed
Fix for Audio deprecated
1 parent 8b865ee commit 499a407

1 file changed

Lines changed: 0 additions & 17 deletions

File tree

libs/openFrameworks/types/ofBaseTypes.cpp

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -338,23 +338,6 @@ void ofBaseSoundInput::audioIn( ofSoundBuffer& buffer ){
338338
audioIn(&buffer[0], buffer.getNumFrames(), buffer.getNumChannels(), buffer.getDeviceID(), buffer.getTickCount());
339339
}
340340

341-
void ofBaseSoundInput::audioIn( float * input, int bufferSize, int nChannels, int deviceID, long unsigned long tickCount ){
342-
audioIn(input, bufferSize, nChannels);
343-
}
344-
345-
void ofBaseSoundInput::audioIn( float * input, int bufferSize, int nChannels ){
346-
audioReceived(input, bufferSize, nChannels);
347-
}
348-
349-
350341
void ofBaseSoundOutput::audioOut( ofSoundBuffer& buffer ){
351342
audioOut(&buffer[0], buffer.getNumFrames(), buffer.getNumChannels(), buffer.getDeviceID(), buffer.getTickCount());
352343
}
353-
354-
void ofBaseSoundOutput::audioOut( float * output, int bufferSize, int nChannels, int deviceID, long unsigned long tickCount ){
355-
audioOut(output, bufferSize, nChannels);
356-
}
357-
358-
void ofBaseSoundOutput::audioOut( float * output, int bufferSize, int nChannels ){
359-
audioRequested(output, bufferSize, nChannels);
360-
}

0 commit comments

Comments
 (0)