]> git.sesse.net Git - vlc/blob - bindings/phonon/vlc/sinknode.cpp
Phonon Backend using VLC
[vlc] / bindings / phonon / vlc / sinknode.cpp
1 /*****************************************************************************
2  * VLC backend for the Phonon library                                        *
3  * Copyright (C) 2007-2008 Tanguy Krotoff <tkrotoff@gmail.com>               *
4  * Copyright (C) 2008 Lukas Durfina <lukas.durfina@gmail.com>                *
5  * Copyright (C) 2009 Fathi Boudra <fabo@kde.org>                            *
6  *                                                                           *
7  * This program is free software; you can redistribute it and/or             *
8  * modify it under the terms of the GNU Lesser General Public                *
9  * License as published by the Free Software Foundation; either              *
10  * version 3 of the License, or (at your option) any later version.          *
11  *                                                                           *
12  * This program is distributed in the hope that it will be useful,           *
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of            *
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU         *
15  * Lesser General Public License for more details.                           *
16  *                                                                           *
17  * You should have received a copy of the GNU Lesser General Public          *
18  * License along with this package; if not, write to the Free Software       *
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA *
20  *****************************************************************************/
21
22 #include "sinknode.h"
23
24 #include "mediaobject.h"
25
26 namespace Phonon
27 {
28 namespace VLC {
29
30 SinkNode::SinkNode(QObject *p_parent)
31         : QObject(p_parent)
32 {
33     p_media_object = 0;
34 }
35
36 SinkNode::~SinkNode()
37 {
38 }
39
40 void SinkNode::connectToMediaObject(PrivateMediaObject * mediaObject)
41 {
42     if (p_media_object)
43         qCritical() << __FUNCTION__ << "p_media_object already connected";
44
45     p_media_object = mediaObject;
46 }
47
48 void SinkNode::disconnectFromMediaObject(PrivateMediaObject * mediaObject)
49 {
50     if (p_media_object != mediaObject)
51         qCritical() << __FUNCTION__ << "SinkNode was not connected to mediaObject";
52 }
53
54
55 }
56 } // Namespace Phonon::VLC_MPlayer