Change mpv qos

This commit is contained in:
Arkadiusz Fal 2022-12-26 19:41:37 +01:00
parent 71a3d54201
commit 0eda2c0485
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ final class MPVClient: ObservableObject {
extra_exts: nil
)
queue = DispatchQueue(label: "mpv", qos: .userInteractive)
queue = DispatchQueue(label: "mpv")
withUnsafeMutablePointer(to: &initParams) { initParams in
var params = [

View File

@ -7,7 +7,7 @@ final class MPVOGLView: GLKView {
private var defaultFBO: GLint?
var mpvGL: UnsafeMutableRawPointer?
var queue = DispatchQueue(label: "stream.yattee.opengl", qos: .userInteractive)
var queue = DispatchQueue(label: "stream.yattee.opengl")
var needsDrawing = true
override init(frame: CGRect) {