~ubuntu-branches/ubuntu/trusty/phonon/trusty-updates

« back to all changes in this revision

Viewing changes to xine/nullsink.h

  • Committer: Bazaar Package Importer
  • Author(s): Modestas Vainius
  • Date: 2011-03-11 21:39:20 UTC
  • mfrom: (6.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20110311213920-pvkmqc1gdpy88uzx
Tags: 4:4.6.0really4.4.4-2
* Drop phonon-backends-dbg from phonon-dbg Recommends/Breaks. No longer
  needed.
* Readd packaging copyright/licensing to debian/copyright.
* Bump libphonon-dev Breaks/Replaces to << 4:4.6.0really4.4.4 for
  libphononexperimental-dev. experimental/avcaptureinterface.h header which
  used to be there up to 4.4.4 (see changelog below).
* Switch debian/rules build engine to dhmk (qt-kde-team/2/*):
  - build-depend on pkg-kde-tools >= 0.11;
  - port debian/rules to dhmk keeping it dh compatible as much as possible.
* Drop unused ${shlibs:Depends} from libphonon-dev and
  libphononexperimental-dev packages.
* Add README.Debian to phonon-backend-null package.
* Remove phonon-backend-null.lintian-overrides: phonon-backend-null is no
  longer and empty package due to README.Debian (see above).
* Release to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  This file is part of the KDE project
2
 
    Copyright (C) 2007 Matthias Kretz <kretz@kde.org>
3
 
 
4
 
    This program is free software; you can redistribute it and/or
5
 
    modify it under the terms of the GNU Library General Public
6
 
    License as published by the Free Software Foundation; either
7
 
    version 2 of the License, or (at your option) any later version.
8
 
 
9
 
    This library is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
    Library General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU Library General Public License
15
 
    along with this library; see the file COPYING.LIB.  If not, write to
16
 
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17
 
    Boston, MA 02110-1301, USA.
18
 
 
19
 
*/
20
 
 
21
 
#ifndef NULLSINK_H
22
 
#define NULLSINK_H
23
 
 
24
 
#include "sinknode.h"
25
 
#include <QtCore/QObject>
26
 
 
27
 
namespace Phonon
28
 
{
29
 
namespace Xine
30
 
{
31
 
 
32
 
class XineStream;
33
 
class NullSinkXT : public SinkNodeXT
34
 
{
35
 
    public:
36
 
        NullSinkXT() : SinkNodeXT("NullSink"), m_stream(0) {}
37
 
        virtual void rewireTo(SourceNodeXT *);
38
 
        virtual xine_audio_port_t *audioPort() const;
39
 
        virtual xine_video_port_t *videoPort() const;
40
 
 
41
 
    private:
42
 
        friend class NullSink;
43
 
        QPointer<XineStream> m_stream;
44
 
};
45
 
 
46
 
class NullSinkPrivate;
47
 
class NullSink : public QObject, public SinkNode
48
 
{
49
 
    friend class NullSinkPrivate;
50
 
    Q_OBJECT
51
 
    public:
52
 
        NullSink(QObject *parent) : QObject(parent), SinkNode(new NullSinkXT) {}
53
 
        MediaStreamTypes inputMediaStreamTypes() const { return Phonon::Xine::Audio | Phonon::Xine::Video; }
54
 
        void downstreamEvent(Event *e);
55
 
};
56
 
} // namespace Xine
57
 
} // namespace Phonon
58
 
#endif // NULLSINK_H