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

« back to all changes in this revision

Viewing changes to gstreamer/backend.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:
18
18
#ifndef Phonon_GSTREAMER_BACKEND_H
19
19
#define Phonon_GSTREAMER_BACKEND_H
20
20
 
21
 
#include "common.h"
22
 
#include "message.h"
23
 
 
24
21
#include <phonon/objectdescription.h>
25
22
#include <phonon/backendinterface.h>
26
23
 
68
65
 
69
66
    DebugLevel debugLevel() const;
70
67
 
71
 
    void addBusWatcher(MediaObject* node);
72
 
    void removeBusWatcher(MediaObject* node);
73
68
    void logMessage(const QString &message, int priority = 2, QObject *obj = 0) const;
74
69
    bool checkDependencies() const;
75
70
 
76
71
Q_SIGNALS:
77
72
    void objectDescriptionChanged(ObjectDescriptionType);
78
73
 
79
 
private Q_SLOTS:
80
 
    void handleBusMessage(Message);
81
 
 
82
74
private:
83
 
    static gboolean busCall(GstBus *bus, GstMessage *msg, gpointer data);
84
 
 
85
75
    DeviceManager *m_deviceManager;
86
76
    EffectManager *m_effectManager;
87
77
    DebugLevel m_debugLevel;