summaryrefslogtreecommitdiffstats
path: root/player/main.c
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/main.c
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/main.c')
-rw-r--r--player/main.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/player/main.c b/player/main.c
index 3bed127de7..b54b59674b 100644
--- a/player/main.c
+++ b/player/main.c
@@ -132,7 +132,8 @@ void mp_destroy(struct MPContext *mpctx)
shutdown_clients(mpctx);
#if !defined(__MINGW32__)
- mp_uninit_ipc(mpctx);
+ mp_uninit_ipc(mpctx->ipc_ctx);
+ mpctx->ipc_ctx = NULL;
#endif
command_uninit(mpctx);
@@ -446,7 +447,7 @@ int mp_initialize(struct MPContext *mpctx)
mp_load_scripts(mpctx);
#if !defined(__MINGW32__)
- mp_init_ipc(mpctx);
+ mpctx->ipc_ctx = mp_init_ipc(mpctx->clients, mpctx->global);
#endif
if (opts->shuffle)
@@ -459,9 +460,6 @@ int mp_initialize(struct MPContext *mpctx)
if (!mpctx->playlist->current)
mpctx->playlist->current = mpctx->playlist->first;
- //struct m_config *new = m_config_dup(NULL, mpctx->mconfig);
- //talloc_free(new);
-
MP_STATS(mpctx, "end init");
return 0;