Bump dependency versions, notably media3 (#496)

## Description
Bumps dependency versions, notably media3/ExoPlayer to `1.9.0`

### Related issues

Fixes #108
Fixes #355
Fixes #479
This commit is contained in:
Ray 2025-12-17 17:00:15 -05:00 committed by GitHub
parent 7581b05b97
commit 8479d8621d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 16 additions and 6 deletions

View file

@ -447,6 +447,14 @@ class MpvPlayer(
override fun getVolume(): Float = 1f
override fun mute() {
volume = 0f
}
override fun unmute() {
volume = 1f
}
override fun clearVideoSurface(): Unit = throw UnsupportedOperationException()
override fun clearVideoSurface(surface: Surface?): Unit = throw UnsupportedOperationException()