Skip to content

Commit

Permalink
Fix port audio data.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuscu committed Oct 22, 2024
1 parent c2807e0 commit aeaf602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/audio/include/audio/PortAudio.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ namespace l::audio {
int32_t GetNumFramesPerPart();
int32_t GetSampleRate();
protected:
PaStreamParameters mInputParameters{ 0 };
PaStreamParameters mOutputParameters{ 0 };
PaStreamParameters mInputParameters{ 0,0,0,0.0,nullptr };
PaStreamParameters mOutputParameters{ 0,0,0,0.0,nullptr };
PaStream* mPaStream = nullptr;

AudioStreamData mAudioStreamData;
Expand Down

0 comments on commit aeaf602

Please sign in to comment.