diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-06-12 17:10:53 +0200 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-06-12 17:10:53 +0200 |
| commit | 200dbfe0d2707a718debf4c26d66da718d16449b (patch) | |
| tree | a5a88bdce66c262bafcba2364f7100a9ee040338 /mumd/src/audio/input.rs | |
| parent | 09cf98857e39d75ed6034259a6fefe48e5998a71 (diff) | |
| download | mum-200dbfe0d2707a718debf4c26d66da718d16449b.tar.gz | |
resolve warnings
Diffstat (limited to 'mumd/src/audio/input.rs')
| -rw-r--r-- | mumd/src/audio/input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mumd/src/audio/input.rs b/mumd/src/audio/input.rs index 78a7202..490cf04 100644 --- a/mumd/src/audio/input.rs +++ b/mumd/src/audio/input.rs @@ -92,7 +92,7 @@ impl DefaultAudioInputDevice { let (volume_sender, input_volume_receiver) = watch::channel::<f32>(input_volume); - let mut opus_encoder = opus::Encoder::new( + let opus_encoder = opus::Encoder::new( sample_rate.0, match input_config.channels { 1 => opus::Channels::Mono, |
