Skip to content

Commit

Permalink
MemoryStream empty constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Dec 9, 2024
1 parent 8c3dbf5 commit 1ac269f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/AudioTools/CoreAudio/AudioStreams.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ class ModifyingStream : public AudioStream {
*/
class MemoryStream : public AudioStream {
public:
// Default constructor
MemoryStream() = default;
/// Constructor for alloction in RAM
MemoryStream(int buffer_size, MemoryType memoryType) {
LOGD("MemoryStream: %d", buffer_size);
Expand Down

0 comments on commit 1ac269f

Please sign in to comment.