From f3b2ea9de533ac3ee0ebdaaf6411c97212f5a86b Mon Sep 17 00:00:00 2001 From: "Avi Halachmi (:avih)" Date: Sat, 1 May 2021 15:26:50 +0300 Subject: command: new property: pid (process id) Fixes #7562 --- player/command.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'player') diff --git a/player/command.c b/player/command.c index 12a5f75282..d1cd1c7010 100644 --- a/player/command.c +++ b/player/command.c @@ -54,6 +54,7 @@ #include "options/m_option.h" #include "options/m_property.h" #include "options/m_config_frontend.h" +#include "osdep/getpid.h" #include "video/out/vo.h" #include "video/csputils.h" #include "video/hwdec.h" @@ -426,6 +427,13 @@ static int mp_property_display_sync_active(void *ctx, struct m_property *prop, return m_property_flag_ro(action, arg, mpctx->display_sync_active); } +static int mp_property_pid(void *ctx, struct m_property *prop, + int action, void *arg) +{ + // 32 bit on linux/windows - which C99 `int' is not guaranteed to hold + return m_property_int64_ro(action, arg, mp_getpid()); +} + /// filename with path (RO) static int mp_property_path(void *ctx, struct m_property *prop, int action, void *arg) @@ -3500,6 +3508,7 @@ static int mp_property_script_props(void *ctx, struct m_property *prop, // Base list of properties. This does not include option-mapped properties. static const struct m_property mp_properties_base[] = { // General + {"pid", mp_property_pid}, {"speed", mp_property_playback_speed}, {"audio-speed-correction", mp_property_av_speed_correction, .priv = "a"}, {"video-speed-correction", mp_property_av_speed_correction, .priv = "v"}, -- cgit v1.2.3