diff options
author | methodus <methodus@web.de> | 2012-09-16 16:46:39 +0200 |
---|---|---|
committer | methodus <methodus@web.de> | 2012-09-16 16:46:39 +0200 |
commit | 6291e30d852061c2c2dea42196232ec7746975a9 (patch) | |
tree | 95a40772e3e555dcba757dc3a07520dbbe860c15 /include/plugin.h | |
parent | b49fd97eecee0d69b4a118ee68d04d08516998d7 (diff) | |
download | vdr-plugin-upnp-6291e30d852061c2c2dea42196232ec7746975a9.tar.gz vdr-plugin-upnp-6291e30d852061c2c2dea42196232ec7746975a9.tar.bz2 |
Added constant property keys to plugin interface
Diffstat (limited to 'include/plugin.h')
-rw-r--r-- | include/plugin.h | 53 |
1 files changed, 38 insertions, 15 deletions
diff --git a/include/plugin.h b/include/plugin.h index 74f5ae4..e957505 100644 --- a/include/plugin.h +++ b/include/plugin.h @@ -17,6 +17,44 @@ using namespace std; namespace upnp { +namespace property { + +namespace object { + + static const char* KEY_OBJECTID = "@id"; + static const char* KEY_PARENTID = "@parentID"; + static const char* KEY_TITLE = "dc:title"; + static const char* KEY_CREATOR = "dc:creator"; + static const char* KEY_CLASS = "upnp:class"; + static const char* KEY_RESTRICTED = "@restricted"; + static const char* KEY_DESCRIPTION = "dc:description"; + static const char* KEY_LONG_DESCRIPTION = "upnp:longDescription"; + static const char* KEY_DATE = "dc:date"; + static const char* KEY_LANGUAGE = "dc:language"; + static const char* KEY_CHANNEL_NR = "upnp:channelNr"; + static const char* KEY_CHANNEL_NAME = "upnp:channelName"; + static const char* KEY_SCHEDULED_START = "upnp:scheduledStartTime"; + static const char* KEY_SCHEDULED_END = "upnp:scheduledEndTime"; + +} + +namespace resource { + + static const char* KEY_RESOURCE = "res"; + static const char* KEY_PROTOCOL_INFO = "res@protocolInfo"; + static const char* KEY_SIZE = "res@size"; + static const char* KEY_DURATION = "res@duration"; + static const char* KEY_SAMPLE_FREQUENCY = "res@sampleFrequency"; + static const char* KEY_RESOLUTION = "res@resolution"; + static const char* KEY_BITRATE = "res@bitrate"; + static const char* KEY_BITS_PER_SAMPLE = "res@bitsPerSample"; + static const char* KEY_NR_AUDIO_CHANNELS = "res@nrAudioChannels"; + static const char* KEY_COLOR_DEPTH = "res@colorDepth"; + +} + +} + /** * Metadata class * @@ -49,21 +87,6 @@ namespace upnp { class cMetadata { public: - static const char* KEY_OBJECTID; - static const char* KEY_PARENTID; - static const char* KEY_TITLE; - static const char* KEY_CREATOR; - static const char* KEY_CLASS; - static const char* KEY_RESTRICTED; - static const char* KEY_DESCRIPTION; - static const char* KEY_LONG_DESCRIPTION; - static const char* KEY_DATE; - static const char* KEY_LANGUAGE; - static const char* KEY_CHANNEL_NR; - static const char* KEY_CHANNEL_NAME; - static const char* KEY_SCHEDULED_START; - static const char* KEY_SCHEDULED_END; - /** * Property class * |