From 21af74d799944290f9faaef744f71a1450b40320 Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Wed, 12 Sep 2012 14:25:24 +0200 Subject: server,engine: Move MediaEngine into .so --- tests/rygel-item-creator-test.vala | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tests/rygel-item-creator-test.vala') diff --git a/tests/rygel-item-creator-test.vala b/tests/rygel-item-creator-test.vala index e0fda397..53971c03 100644 --- a/tests/rygel-item-creator-test.vala +++ b/tests/rygel-item-creator-test.vala @@ -245,7 +245,7 @@ public errordomain Rygel.ContentDirectoryError { public class Rygel.Transcoder { } -public class Rygel.GstMediaEngine : Rygel.MediaEngine { +public class Rygel.TestMediaEngine : Rygel.MediaEngine { public override unowned GLib.List get_dlna_profiles () { return null; } @@ -259,6 +259,14 @@ public class Rygel.GstMediaEngine : Rygel.MediaEngine { } } +public class Rygel.EngineLoader { + public EngineLoader () { } + + public MediaEngine load_engine () { + return new TestMediaEngine (); + } +} + public class Rygel.HTTPItemCreatorTest : GLib.Object { public static int main (string[] args) { -- cgit v1.2.1