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

« back to all changes in this revision

Viewing changes to xine/xinethread.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 PHONON_XINE_XINETHREAD_H
22
 
#define PHONON_XINE_XINETHREAD_H
23
 
 
24
 
#include <QtCore/QThread>
25
 
#include <QtCore/QWaitCondition>
26
 
#include <QtCore/QMutex>
27
 
 
28
 
namespace Phonon
29
 
{
30
 
namespace Xine
31
 
{
32
 
class XineStream;
33
 
 
34
 
class XineThread : public QThread
35
 
{
36
 
    friend class Backend;
37
 
    Q_OBJECT
38
 
    public:
39
 
        static XineThread *instance();
40
 
 
41
 
        XineThread();
42
 
        ~XineThread();
43
 
 
44
 
        void waitForEventLoop();
45
 
        static XineStream *newStream();
46
 
        void quit();
47
 
 
48
 
    protected:
49
 
        void run();
50
 
        bool event(QEvent *e);
51
 
 
52
 
    private slots:
53
 
        void eventLoopReady();
54
 
 
55
 
    private:
56
 
        QMutex m_mutex;
57
 
        QWaitCondition m_waitingForEventLoop;
58
 
        QWaitCondition m_waitingForNewStream;
59
 
        XineStream *m_newStream;
60
 
        bool m_eventLoopReady;
61
 
};
62
 
 
63
 
} // namespace Xine
64
 
} // namespace Phonon
65
 
#endif // PHONON_XINE_XINETHREAD_H