summaryrefslogtreecommitdiffstats
path: root/sub/sd.h
diff options
context:
space:
mode:
Diffstat (limited to 'sub/sd.h')
-rw-r--r--sub/sd.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/sub/sd.h b/sub/sd.h
index c73f74e151..e4ec2dd357 100644
--- a/sub/sd.h
+++ b/sub/sd.h
@@ -10,19 +10,16 @@
#define SUB_GAP_KEEP 0.4
struct sd {
+ struct mpv_global *global;
struct mp_log *log;
struct MPOpts *opts;
const struct sd_functions *driver;
void *priv;
+ struct demuxer *demuxer;
struct sh_stream *sh;
double video_fps;
-
- // Shared renderer for ASS - done to avoid reloading embedded fonts.
- struct ass_library *ass_library;
- struct ass_renderer *ass_renderer;
- pthread_mutex_t *ass_lock;
};
struct sd_functions {