Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/entity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,15 @@ pub enum MediaPlayerOptionField {
SimpleCommands,
/// Number of available volume steps for the set volume command and UI controls.
VolumeSteps,
/// Bit-field indicating if the `browse` and `search` commands support stable media IDs:
///
/// - Bit 0: `browse` always returns stable ids.
/// - Bit 1: `browse` supports stable ids with the `stable_ids` parameter.
/// - Bit 2: `search` always returns stable ids.
/// - Bit 3: `search` returns stable ids with the `stable_ids` parameter.
///
/// Default if not provided: `browse` and `search` always return stable IDs (Bit 0 | Bit 2)
StableIdSupport,
}

/// Media player media content types.
Expand Down