-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
waver : fix data race with ggwave instance + v1.4.1
- Loading branch information
Showing
3 changed files
with
23 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <memory> | ||
|
||
class GGWave; | ||
|
||
// GGWave helpers | ||
|
||
void GGWave_setDefaultCaptureDeviceName(std::string name); | ||
bool GGWave_init(const int playbackId, const int captureId, const int payloadLength = -1, const float sampleRateOffset = 0); | ||
GGWave *& GGWave_instance(); | ||
std::shared_ptr<GGWave> GGWave_instance(); | ||
void GGWave_reset(void * parameters); | ||
bool GGWave_mainLoop(); | ||
bool GGWave_deinit(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters