From c7a906230bdf60ee95a6809a706d5065a931a13f Mon Sep 17 00:00:00 2001 From: Tad Hardesty Date: Mon, 15 Aug 2016 17:41:34 -0700 Subject: [PATCH] Line wrap comments on Application --- src/lib.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 04db197..347caf4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -35,9 +35,11 @@ const OPUS_GET_BITRATE: c_int = 4003; // out *i32 /// The possible applications for the codec. #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)] pub enum Application { - /// Best for most VoIP/videoconference applications where listening quality and intelligibility matter most. + /// Best for most VoIP/videoconference applications where listening quality + /// and intelligibility matter most. Voip = 2048, - /// Best for broadcast/high-fidelity application where the decoded audio should be as close as possible to the input. + /// Best for broadcast/high-fidelity application where the decoded audio + /// should be as close as possible to the input. Audio = 2049, /// Only use when lowest-achievable latency is what matters most. LowDelay = 2051,