1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* Copyright (C) 2012 Openismus GmbH.
* Copyright (C) 2012 Intel Corporation.
*
* Author: Jens Georg <jensg@openismus.com>
*
* Rygel is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Rygel is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
internal class Plugin : Rygel.MediaRendererPlugin {
private Rygel.MediaPlayer player;
public Plugin (Rygel.MediaPlayer player,
Rygel.PluginCapabilities capabilities) {
base ("LibRygelRenderer", "LibRygelRenderer", null, capabilities);
this.player = player;
}
public override Rygel.MediaPlayer? get_player () {
return this.player;
}
}
/**
* This class may be used to implement in-process UPnP-AV media renderers.
*
* Call rygel_media_device_add_interface() on the RygelMediaRenderer to allow it
* to render media from that network interface.
*
* See the
* <link linkend="implementing-renderers">Implementing Renderers</link> section.
*/
public class Rygel.MediaRenderer : MediaDevice {
public unowned MediaPlayer player { construct; private get; }
/**
* Create a RygelMediaRenderer to render content via a RygelMediaPlayer.
*/
public MediaRenderer (string title,
MediaPlayer player,
PluginCapabilities capabilities =
PluginCapabilities.NONE) {
Object (title: title,
player: player,
capabilities: capabilities);
}
public override void constructed () {
base.constructed ();
if (this.plugin == null) {
this.plugin = new global::Plugin (this.player, this.capabilities);
}
this.plugin.title = this.title;
}
}
|