summaryrefslogtreecommitdiffstats
path: root/player/core.h
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-10-21 04:55:41 +0200
committerDudemanguy <random342@airmail.cc>2023-11-05 17:36:17 +0000
commit174df99ffa53f1091589eaa4fa0c16cdd55a9326 (patch)
tree3a60d45615f18beed98a9b08267c28ed7e05dd5f /player/core.h
parent3a8b107f6216b38a151d5ca1e9d4f2727e3418f5 (diff)
downloadmpv-174df99ffa53f1091589eaa4fa0c16cdd55a9326.tar.bz2
mpv-174df99ffa53f1091589eaa4fa0c16cdd55a9326.tar.xz
ALL: use new mp_thread abstraction
Diffstat (limited to 'player/core.h')
-rw-r--r--player/core.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/player/core.h b/player/core.h
index 70692a0c86..8a49585cdf 100644
--- a/player/core.h
+++ b/player/core.h
@@ -18,18 +18,18 @@
#ifndef MPLAYER_MP_CORE_H
#define MPLAYER_MP_CORE_H
-#include <pthread.h>
#include <stdatomic.h>
#include <stdbool.h>
#include "libmpv/client.h"
+#include "audio/aframe.h"
#include "common/common.h"
-#include "filters/filter.h"
#include "filters/f_output_chain.h"
+#include "filters/filter.h"
#include "options/options.h"
+#include "osdep/threads.h"
#include "sub/osd.h"
-#include "audio/aframe.h"
#include "video/mp_image.h"
#include "video/out/vo.h"
@@ -430,7 +430,7 @@ typedef struct MPContext {
int64_t builtin_script_ids[5];
- pthread_mutex_t abort_lock;
+ mp_mutex abort_lock;
// --- The following fields are protected by abort_lock
struct mp_abort_entry **abort_list;
@@ -438,7 +438,7 @@ typedef struct MPContext {
bool abort_all; // during final termination
// --- Owned by MPContext
- pthread_t open_thread;
+ mp_thread open_thread;
bool open_active; // open_thread is a valid thread handle, all setup
atomic_bool open_done;
// --- All fields below are immutable while open_active is true.