summaryrefslogtreecommitdiffstats
path: root/player/core.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-19 16:44:33 +0200
committerwm4 <wm4@nowhere>2014-10-19 20:44:29 +0200
commitf4c589418c7d8a7dbcfb2f25fd409f424d2ae805 (patch)
tree30f49928531bbd972a2d71dc8cec767f79baef9e /player/core.h
parentc854ce934ec615bc04fe47f6c139a6a152aba8c1 (diff)
downloadmpv-f4c589418c7d8a7dbcfb2f25fd409f424d2ae805.tar.bz2
mpv-f4c589418c7d8a7dbcfb2f25fd409f424d2ae805.tar.xz
ipc: decouple from MPContext
Just a minor refactor to keep unneeded dependencies on the core low.
Diffstat (limited to 'player/core.h')
-rw-r--r--player/core.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/player/core.h b/player/core.h
index 2d4c22434b..4d4142000c 100644
--- a/player/core.h
+++ b/player/core.h
@@ -346,7 +346,7 @@ typedef struct MPContext {
struct encode_lavc_context *encode_lavc_ctx;
struct mp_nav_state *nav_state;
- void *ipc_ctx;
+ struct mp_ipc_ctx *ipc_ctx;
} MPContext;
// audio.c
@@ -378,10 +378,6 @@ void mp_nav_user_input(struct MPContext *mpctx, char *command);
void mp_handle_nav(struct MPContext *mpctx);
int mp_nav_in_menu(struct MPContext *mpctx);
-// ipc.c
-void mp_init_ipc(struct MPContext *mpctx);
-void mp_uninit_ipc(struct MPContext *mpctx);
-
// loadfile.c
void uninit_player(struct MPContext *mpctx, unsigned int mask);
struct track *mp_add_subtitles(struct MPContext *mpctx, char *filename);