Line wrap comments on Application

This commit is contained in:
Tad Hardesty 2016-08-15 17:41:34 -07:00
parent 0117ef5011
commit c7a906230b
No known key found for this signature in database
GPG Key ID: AEFCC915C75ACC47

View File

@ -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,