~ubuntu-branches/ubuntu/saucy/phonon-backend-gstreamer/saucy-proposed

« back to all changes in this revision

Viewing changes to gstreamer/message.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2011-04-15 14:43:30 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110415144330-7uif3319lxdu4ltt
Tags: 4:4.7.0really4.5.0-0ubuntu2
* New upstream release
* Add kubuntu_02_install_codec.diff to fix codec install

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  This file is part of the KDE project.
2
 
 
3
 
    Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4
 
 
5
 
    This library is free software: you can redistribute it and/or modify
6
 
    it under the terms of the GNU Lesser General Public License as published by
7
 
    the Free Software Foundation, either version 2.1 or 3 of the License.
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
12
 
    GNU Lesser General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU Lesser General Public License
15
 
    along with this library.  If not, see <http://www.gnu.org/licenses/>.
16
 
*/
17
 
 
18
 
#ifndef Phonon_GSTREAMER_MESSAGE_H
19
 
#define Phonon_GSTREAMER_MESSAGE_H
20
 
 
21
 
#include <QtCore/QMetaType>
22
 
 
23
 
#include <glib-2.0/glib/gmacros.h> // For G_*_DECLS macros primarily
24
 
#include <gst/gstmessage.h>
25
 
 
26
 
QT_BEGIN_NAMESPACE
27
 
 
28
 
namespace Phonon
29
 
{
30
 
namespace Gstreamer
31
 
{
32
 
 
33
 
class MediaObject;
34
 
class Message
35
 
{
36
 
public:
37
 
    Message();
38
 
    Message(GstMessage* message, MediaObject *source);
39
 
    ~Message();
40
 
 
41
 
    GstMessage* rawMessage() const;
42
 
    MediaObject *source() const;
43
 
    Message(const Message &other);
44
 
 
45
 
private:
46
 
    GstMessage* m_message;
47
 
    MediaObject *m_source;
48
 
};
49
 
 
50
 
}   // ns gstreamer
51
 
}   // ns phonon
52
 
 
53
 
QT_END_NAMESPACE
54
 
 
55
 
Q_DECLARE_METATYPE(Phonon::Gstreamer::Message)
56
 
 
57
 
#endif // Phonon_GSTREAMER_MESSAGE_H