build,media-export: Adapt to gupnp-dlna 0.3 API
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Mon, 16 Aug 2010 20:25:26 +0000 (23:25 +0300)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Mon, 16 Aug 2010 20:27:38 +0000 (23:27 +0300)
configure.ac
src/plugins/media-export/rygel-media-export-metadata-extractor.vala

index 83ea895..5fe236d 100644 (file)
@@ -23,8 +23,8 @@ AC_FUNC_MMAP
 VALA_REQUIRED=0.9.5
 GUPNP_REQUIRED=0.13.4
 GUPNP_AV_REQUIRED=0.5.9
-GUPNP_DLNA_REQUIRED=0.2.1
-GUPNP_VALA_REQUIRED=0.6.10
+GUPNP_DLNA_REQUIRED=0.3.0
+GUPNP_VALA_REQUIRED=0.6.11
 DBUS_GLIB_REQUIRED=0.74
 GSTREAMER_REQUIRED=0.10.23
 GSTREAMER_TAG_REQUIRED=0.10.28
index 678ce25..48c9963 100644 (file)
@@ -69,7 +69,9 @@ public class Rygel.MediaExport.MetadataExtractor: GLib.Object {
 
         if (this.extract_metadata) {
             var gst_timeout = (ClockTime) (this.timeout * Gst.SECOND);
-            this.discoverer = new GUPnP.DLNADiscoverer (gst_timeout);
+            this.discoverer = new GUPnP.DLNADiscoverer (gst_timeout,
+                                                        true,
+                                                        true);
             this.discoverer.done.connect (on_done);
             this.discoverer.start ();
         }