mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
23 lines
506 B
C#
23 lines
506 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace PortAudioSharp
|
||
|
|
{
|
||
|
|
internal struct PaStreamParameters
|
||
|
|
{
|
||
|
|
public int device;
|
||
|
|
|
||
|
|
public int channelCount;
|
||
|
|
|
||
|
|
public PaSampleFormat sampleFormat;
|
||
|
|
|
||
|
|
public double suggestedLatency;
|
||
|
|
|
||
|
|
public IntPtr hostApiSpecificStreamInfo;
|
||
|
|
|
||
|
|
public override string ToString()
|
||
|
|
{
|
||
|
|
return "[" + ((object)this).GetType().Name + "]\ndevice: " + this.device + "\nchannelCount: " + this.channelCount + "\nsampleFormat: " + this.sampleFormat + "\nsuggestedLatency: " + this.suggestedLatency;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|