7d542a9f98
GitOrigin-RevId: b72b8b94cf0c012b0252a9100a636cad69696666
22 lines
1.4 KiB
Diff
22 lines
1.4 KiB
Diff
diff --git a/usr/lib/hypnotix/mpv.py b/usr/lib/hypnotix/mpv.py
|
|
index f42a3be..db94bf6 100644
|
|
--- a/usr/lib/hypnotix/mpv.py
|
|
+++ b/usr/lib/hypnotix/mpv.py
|
|
@@ -528,7 +528,7 @@ _mpv_create = backend.mpv_create
|
|
_handle_func('mpv_create_client', [c_char_p], MpvHandle, notnull_errcheck)
|
|
_handle_func('mpv_client_name', [], c_char_p, errcheck=None)
|
|
_handle_func('mpv_initialize', [], c_int, ec_errcheck)
|
|
-_handle_func('mpv_detach_destroy', [], None, errcheck=None)
|
|
+_handle_func('mpv_destroy', [], None, errcheck=None)
|
|
_handle_func('mpv_terminate_destroy', [], None, errcheck=None)
|
|
_handle_func('mpv_load_config_file', [c_char_p], c_int, ec_errcheck)
|
|
_handle_func('mpv_get_time_us', [], c_ulonglong, errcheck=None)
|
|
@@ -881,7 +881,7 @@ class MPV(object):
|
|
self._message_handlers[target](*args)
|
|
|
|
if eid == MpvEventID.SHUTDOWN:
|
|
- _mpv_detach_destroy(self._event_handle)
|
|
+ _mpv_destroy(self._event_handle)
|
|
return
|
|
|
|
except Exception as e:
|