[rygel] core: Add storageUsed property to containers
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [rygel] core: Add storageUsed property to containers
- Date: Sat, 18 Jun 2011 22:04:08 +0000 (UTC)
commit dd376cfca01b387cdf5d781be319df2f7967418f
Author: Jens Georg <mail jensge org>
Date: Fri Jun 10 11:39:51 2011 +0200
core: Add storageUsed property to containers
src/rygel/rygel-media-container.vala | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/rygel/rygel-media-container.vala b/src/rygel/rygel-media-container.vala
index 2e16a54..543061c 100644
--- a/src/rygel/rygel-media-container.vala
+++ b/src/rygel/rygel-media-container.vala
@@ -48,6 +48,7 @@ public abstract class Rygel.MediaContainer : MediaObject {
public int child_count;
public uint32 update_id;
+ public int64 storage_used;
internal override OCMFlags ocm_flags {
get {
@@ -89,6 +90,7 @@ public abstract class Rygel.MediaContainer : MediaObject {
this.title = title;
this.child_count = child_count;
this.update_id = 0;
+ this.storage_used = -1;
this.upnp_class = STORAGE_FOLDER;
this.container_updated.connect (on_container_updated);
@@ -160,6 +162,7 @@ public abstract class Rygel.MediaContainer : MediaObject {
didl_container.child_count = this.child_count;
didl_container.upnp_class = this.upnp_class;
didl_container.searchable = this is SearchableContainer;
+ didl_container.storage_used = this.storage_used;
if (!this.restricted) {
didl_container.restricted = false;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]