We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f0911b commit 640ce95Copy full SHA for 640ce95
README.md
@@ -124,11 +124,11 @@ AudioFile is written and maintained by Adam Stark.
124
Write the audio file data directly to a vector of bytes (without writing to a file on disk):
125
126
std::vector<uint8_t> fileData;
127
- saveToMemory (fileData, AudioFileFormat::Wave);
+ audioFile.saveToMemory (fileData, AudioFileFormat::Wave);
128
129
or
130
131
- saveToMemory (fileData, AudioFileFormat::Aiff);
+ audioFile.saveToMemory (fileData, AudioFileFormat::Aiff);
132
133
## Examples
134
0 commit comments