mirror of
https://github.com/RustAudio/rodio
synced 2024-12-12 13:12:30 +00:00
remove unneeded pub from OutputStreamConfig
This commit is contained in:
parent
c1d22302c7
commit
bc8d1c7e05
1 changed files with 4 additions and 4 deletions
|
@ -31,10 +31,10 @@ impl OutputStream {
|
|||
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
struct OutputStreamConfig {
|
||||
pub channel_count: ChannelCount,
|
||||
pub sample_rate: SampleRate,
|
||||
pub buffer_size: BufferSize,
|
||||
pub sample_format: SampleFormat,
|
||||
channel_count: ChannelCount,
|
||||
sample_rate: SampleRate,
|
||||
buffer_size: BufferSize,
|
||||
sample_format: SampleFormat,
|
||||
}
|
||||
|
||||
/// Convenience builder for audio output stream.
|
||||
|
|
Loading…
Reference in a new issue