From 13039414f5fd00a6b20d2bbad9fd497c6e579d34 Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Thu, 16 Oct 2014 11:48:18 +0200 Subject: input: implement JSON-based IPC protocol --- player/main.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'player/main.c') diff --git a/player/main.c b/player/main.c index 160b5deab3..3bed127de7 100644 --- a/player/main.c +++ b/player/main.c @@ -131,6 +131,10 @@ void mp_destroy(struct MPContext *mpctx) shutdown_clients(mpctx); +#if !defined(__MINGW32__) + mp_uninit_ipc(mpctx); +#endif + command_uninit(mpctx); osd_free(mpctx->osd); @@ -441,6 +445,10 @@ int mp_initialize(struct MPContext *mpctx) // where this is safe. mp_load_scripts(mpctx); +#if !defined(__MINGW32__) + mp_init_ipc(mpctx); +#endif + if (opts->shuffle) playlist_shuffle(mpctx->playlist); -- cgit v1.2.3