feat(android): display switch delay

close #894
This commit is contained in:
edde746
2026-04-20 17:34:54 +02:00
parent 6d265e7bae
commit 1fd415ae31
14 changed files with 335 additions and 91 deletions
+5 -1
View File
@@ -288,7 +288,11 @@ class Media {
/// Optional start position for playback.
final Duration? start;
const Media(this.uri, {this.headers, this.start});
/// Optional pre-known video frame rate (from server metadata), used to drive
/// display refresh-rate matching before the first frame renders.
final double? fps;
const Media(this.uri, {this.headers, this.start, this.fps});
@override
String toString() => 'Media($uri)';