mirror of
https://github.com/rustdesk/magnum-opus.git
synced 2026-07-12 18:04:18 +00:00
Line wrap comments on Application
This commit is contained in:
+4
-2
@@ -35,9 +35,11 @@ const OPUS_GET_BITRATE: c_int = 4003; // out *i32
|
|||||||
/// The possible applications for the codec.
|
/// The possible applications for the codec.
|
||||||
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
|
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
|
||||||
pub enum Application {
|
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,
|
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,
|
Audio = 2049,
|
||||||
/// Only use when lowest-achievable latency is what matters most.
|
/// Only use when lowest-achievable latency is what matters most.
|
||||||
LowDelay = 2051,
|
LowDelay = 2051,
|
||||||
|
|||||||
Reference in New Issue
Block a user