mirror of
https://github.com/yattee/yattee.git
synced 2025-08-06 10:44:06 +00:00
Aspect ratio fixes
This commit is contained in:
@@ -318,7 +318,7 @@ final class AVPlayerBackend: PlayerBackend {
|
||||
return
|
||||
}
|
||||
|
||||
self.model.aspectRatio = self.aspectRatio
|
||||
self.updatePlayerAspectRatio()
|
||||
|
||||
if !preservingTime,
|
||||
let segment = self.model.sponsorBlock.segments.first,
|
||||
|
@@ -45,6 +45,7 @@ final class MPVBackend: PlayerBackend {
|
||||
networkStateTimer.start()
|
||||
|
||||
if isPlaying {
|
||||
self.updatePlayerAspectRatio()
|
||||
startClientUpdates()
|
||||
} else {
|
||||
stopControlsUpdates()
|
||||
@@ -204,11 +205,9 @@ final class MPVBackend: PlayerBackend {
|
||||
|
||||
self.model.lastSkipped = segment
|
||||
self.play()
|
||||
self.model.aspectRatio = self.aspectRatio
|
||||
}
|
||||
} else {
|
||||
self.play()
|
||||
self.model.aspectRatio = self.aspectRatio
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -98,4 +98,10 @@ extension PlayerBackend {
|
||||
model.advanceToItem(item)
|
||||
}
|
||||
}
|
||||
|
||||
func updatePlayerAspectRatio() {
|
||||
DispatchQueue.main.async {
|
||||
self.model.aspectRatio = aspectRatio
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user