Skip to content
Snippets Groups Projects
Commit 3dc19666 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#4885] Some cleanup

parent 0cb9fb1a
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ void MainBuffer::setInternalSamplingRate (int sr)
if (sr > _internalSamplingRate) {
_debug ("****************************************** MainBuffer: Internal sampling rate changed %d **********************************", sr);
_debug ("MainBuffer: Internal sampling rate changed %d", sr);
// This call takes the mutex
flushAllBuffers();
......
......@@ -183,12 +183,24 @@ class PulseLayer : public AudioLayer
micVolume = value;
}
/**
* Handle used to write voice data to speaker
*/
void processPlaybackData (void);
/**
* Handle used to write voice data to microphone
*/
void processCaptureData (void);
/**
* Handle used to write audio data to speaker
*/
void processRingtoneData (void);
/**
* Process speaker and microphone audio data
*/
void processData (void);
/**
......@@ -278,16 +290,10 @@ class PulseLayer : public AudioLayer
int spkrVolume;
int micVolume;
// ofstream *captureFile;
// ofstream *spkrFile;
DeviceList _sinkList;
DeviceList _sourceList;
// private:
int byteCounter;
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment