[rygel] gst-launch,test: Use new API



commit 43eacd4c99ff6e09173a2d7659f1ad0ac8049480
Author: Jens Georg <mail jensge org>
Date:   Sun Jan 29 15:28:23 2012 +0100

    gst-launch,test: Use new API
    
    vala-0.14 didn't complain about this so it wasn't caught.

 .../gst-launch/rygel-gst-launch-audio-item.vala    |    2 +-
 .../gst-launch/rygel-gst-launch-video-item.vala    |    2 +-
 src/plugins/test/rygel-test-audio-item.vala        |    2 +-
 src/plugins/test/rygel-test-video-item.vala        |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/plugins/gst-launch/rygel-gst-launch-audio-item.vala b/src/plugins/gst-launch/rygel-gst-launch-audio-item.vala
index d68fb6f..81e3eaa 100644
--- a/src/plugins/gst-launch/rygel-gst-launch-audio-item.vala
+++ b/src/plugins/gst-launch/rygel-gst-launch-audio-item.vala
@@ -42,7 +42,7 @@ public class Rygel.GstLaunch.AudioItem : Rygel.AudioItem, Item {
         this.launch_line = launch_line;
     }
 
-    public override Element? create_stream_source () {
+    public override Element? create_stream_source (string? host_ip) {
         return this.create_source ();
     }
 }
diff --git a/src/plugins/gst-launch/rygel-gst-launch-video-item.vala b/src/plugins/gst-launch/rygel-gst-launch-video-item.vala
index 3cfa0bc..b25900c 100644
--- a/src/plugins/gst-launch/rygel-gst-launch-video-item.vala
+++ b/src/plugins/gst-launch/rygel-gst-launch-video-item.vala
@@ -42,7 +42,7 @@ public class Rygel.GstLaunch.VideoItem : Rygel.VideoItem, Item {
         this.launch_line = launch_line;
     }
 
-    public override Element? create_stream_source () {
+    public override Element? create_stream_source (string? host_ip) {
         return this.create_source ();
     }
 }
diff --git a/src/plugins/test/rygel-test-audio-item.vala b/src/plugins/test/rygel-test-audio-item.vala
index 36b1b39..9a27c8a 100644
--- a/src/plugins/test/rygel-test-audio-item.vala
+++ b/src/plugins/test/rygel-test-audio-item.vala
@@ -37,7 +37,7 @@ public class Rygel.Test.AudioItem : Rygel.AudioItem {
         this.mime_type = TEST_MIMETYPE;
     }
 
-    public override Element? create_stream_source () {
+    public override Element? create_stream_source (string? host_ip) {
         try {
             return parse_bin_from_description (PIPELINE, true);
         } catch (Error err) {
diff --git a/src/plugins/test/rygel-test-video-item.vala b/src/plugins/test/rygel-test-video-item.vala
index 876d271..237f943 100644
--- a/src/plugins/test/rygel-test-video-item.vala
+++ b/src/plugins/test/rygel-test-video-item.vala
@@ -39,7 +39,7 @@ public class Rygel.Test.VideoItem : Rygel.VideoItem {
         this.mime_type = TEST_MIMETYPE;
     }
 
-    public override Element? create_stream_source () {
+    public override Element? create_stream_source (string? host_ip) {
         try {
             return parse_bin_from_description (PIPELINE, true);
         } catch (Error err) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]