aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/upnp/Object.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-10 10:17:30 +0100
committerMax Kellermann <max@duempel.org>2014-01-11 01:31:13 +0100
commitf031eb1ef22373f94838b7e3357f2913ced6db71 (patch)
treee6261d0a22ba0f08dad462e678611efd9db84ab8 /src/db/upnp/Object.hxx
parentb50d79542c95ab88387418b34999e942e6b6a583 (diff)
downloadmpd-f031eb1ef22373f94838b7e3357f2913ced6db71.tar.gz
mpd-f031eb1ef22373f94838b7e3357f2913ced6db71.tar.xz
mpd-f031eb1ef22373f94838b7e3357f2913ced6db71.zip
db/upnp/Directory: parse duration
Don't put all <res/> attributes to the attributes map; parse the "duration" attribute as soon as we receive it, and store it in an integer attribute. This reduces bloat.
Diffstat (limited to 'src/db/upnp/Object.hxx')
-rw-r--r--src/db/upnp/Object.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/db/upnp/Object.hxx b/src/db/upnp/Object.hxx
index a3bb026b8..91a219534 100644
--- a/src/db/upnp/Object.hxx
+++ b/src/db/upnp/Object.hxx
@@ -58,6 +58,11 @@ public:
// The map keys are the XML tag or attribute names.
std::map<std::string, std::string> m_props;
+ /**
+ * Song duration in seconds. 0 if unknown.
+ */
+ int duration;
+
/** Get named property
* @param property name (e.g. upnp:artist, upnp:album,
* upnp:originalTrackNumber, upnp:genre). Use m_title instead
@@ -80,6 +85,7 @@ public:
type = Type::UNKNOWN;
item_class = ItemClass::UNKNOWN;
m_props.clear();
+ duration = -1;
}
};