From bda0e7da1376d5d190e972af794dd76bf83e56fe Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 19 Feb 2014 16:29:04 +0100 Subject: command: allow accessing metadata entries as list Not sure about these deep path-names. Maybe "metadata/0" should work instead of "metadata/list/0". I'm so unsure about it, that I'm leaving it open. --- player/command.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'player') diff --git a/player/command.c b/player/command.c index d9a2b99922..d9984fc8cb 100644 --- a/player/command.c +++ b/player/command.c @@ -770,6 +770,19 @@ static int mp_property_angle(m_option_t *prop, int action, void *arg, return M_PROPERTY_NOT_IMPLEMENTED; } +static int get_tag_entry(int item, int action, void *arg, void *ctx) +{ + struct mp_tags *tags = ctx; + + struct m_sub_property props[] = { + {"key", SUB_PROP_STR(tags->keys[item])}, + {"value", SUB_PROP_STR(tags->values[item])}, + {0} + }; + + return m_property_read_sub(props, action, arg); +} + static int tag_property(m_option_t *prop, int action, void *arg, struct mp_tags *tags) { @@ -802,6 +815,12 @@ static int tag_property(m_option_t *prop, int action, void *arg, case M_PROPERTY_KEY_ACTION: { struct m_property_action_arg *ka = arg; bstr key = bstr0(ka->key); + if (bstr_eatstart0(&key, "list/")) { + struct m_property_action_arg nka = *ka; + nka.key = key.start; // ok because slice ends with \0 + return m_property_read_list(action, &nka, tags->num_keys, + get_tag_entry, tags); + } // Direct access without this prefix is allowed for compatibility. bstr_eatstart0(&key, "by-key/"); char *meta = mp_tags_get_bstr(tags, key); -- cgit v1.2.3