//! Per-subscriber simulcast layer preference.
//!
//! str0m's `Rid` type is an opaque 8-byte string id.
//! LiveKit's convention — adopted by mediasoup and Jitsi — is `"q"` (lowest),
//! `"h"` (mid), `"f"` (full). We build the three values as `const` so they
//! cost nothing at runtime and match byte-for-byte with `Rid::from("q"|"h"|"f")`.
use crateSfuRid;
/// LiveKit low-resolution simulcast layer (`q`).
pub const LOW: SfuRid = LOW;
/// LiveKit mid-resolution simulcast layer (`h`).
pub const MEDIUM: SfuRid = MEDIUM;
/// LiveKit full-resolution simulcast layer (`f`).
pub const HIGH: SfuRid = HIGH;