diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-10-14 19:42:46 +0200 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-10-14 19:42:46 +0200 |
| commit | 6ac72067a75d5e1904226efb5c45bcf0e54a0ae5 (patch) | |
| tree | 1a5e623da01745b3d2a2d1b1d5958a22cd0e382a /mumd/src | |
| parent | afd537e085ddf2c92fb1f1879a72d290010fa570 (diff) | |
| download | mum-6ac72067a75d5e1904226efb5c45bcf0e54a0ae5.tar.gz | |
cargo fmt 2 eletric boogaloo
Diffstat (limited to 'mumd/src')
| -rw-r--r-- | mumd/src/audio.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mumd/src/audio.rs b/mumd/src/audio.rs index d8a37a8..1445415 100644 --- a/mumd/src/audio.rs +++ b/mumd/src/audio.rs @@ -283,7 +283,10 @@ fn input_callback<T: Sample>( || opus_frame_size_blocks == 4 || opus_frame_size_blocks == 8) { - panic!("Unsupported amount of opus frame blocks {}", opus_frame_size_blocks); + panic!( + "Unsupported amount of opus frame blocks {}", + opus_frame_size_blocks + ); } let opus_frame_size = opus_frame_size_blocks * sample_rate / 400; |
