aboutsummaryrefslogtreecommitdiffstats
path: root/mumd/src/audio.rs
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2021-06-15 12:51:46 +0200
committerGustav Sörnäs <gustav@sornas.net>2021-06-15 12:51:46 +0200
commit0f94d30e5ab7945582e1fc7124bbe50c42f37a45 (patch)
tree62da53a0ad63949bf238e4d4ecba159069b2b369 /mumd/src/audio.rs
parented4b641f6d4816325aa07e0f13b6132c1c4dafa2 (diff)
downloadmum-0f94d30e5ab7945582e1fc7124bbe50c42f37a45.tar.gz
incoming -> outgoing packets
Diffstat (limited to 'mumd/src/audio.rs')
-rw-r--r--mumd/src/audio.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mumd/src/audio.rs b/mumd/src/audio.rs
index 46f7050..b3c809d 100644
--- a/mumd/src/audio.rs
+++ b/mumd/src/audio.rs
@@ -76,7 +76,7 @@ impl TryFrom<&str> for NotificationEvents {
pub struct AudioInput {
device: DefaultAudioInputDevice,
- /// Voice packets received from the network.
+ /// Outgoing voice packets that should be sent over the network.
channel_receiver:
Arc<tokio::sync::Mutex<Box<dyn Stream<Item = VoicePacket<Serverbound>> + Unpin>>>,
}