From: Jens Georg Date: Sun, 29 Jan 2012 14:28:23 +0000 (+0100) Subject: gst-launch,test: Use new API X-Git-Tag: RYGEL_0_13_1~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43eacd4c99ff6e09173a2d7659f1ad0ac8049480;p=profile%2Fivi%2Frygel.git gst-launch,test: Use new API vala-0.14 didn't complain about this so it wasn't caught. --- 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) {