summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/phonon/mmf/audioplayer.h
diff options
context:
space:
mode:
authorFrans Englich <frans.englich@nokia.com>2009-08-26 16:36:32 +0200
committerGareth Stockwell <gareth.stockwell@sosco.com>2009-09-09 14:35:38 +0100
commit7d2d15bbc9d598daf94800b576aff19a68119ed1 (patch)
tree61f881bda38b0559db6543ed87b55089e64ef25e /src/3rdparty/phonon/mmf/audioplayer.h
parentc4d341ecf26d63cc7410756f8f7d1926c277f02f (diff)
Work on extending the framework for accomodating effects.
This extends the framework for being able to handle audio effects, largely affecting how the audio chain is set up, connected and disconnected, and therefore the Backend has been refactored slightly, and the class MediaNode introduced, see its documentation. In addition two effects has been written: BassBoost and AudioEqualizer.
Diffstat (limited to 'src/3rdparty/phonon/mmf/audioplayer.h')
-rw-r--r--src/3rdparty/phonon/mmf/audioplayer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/3rdparty/phonon/mmf/audioplayer.h b/src/3rdparty/phonon/mmf/audioplayer.h
index 424985c1b0..324515981a 100644
--- a/src/3rdparty/phonon/mmf/audioplayer.h
+++ b/src/3rdparty/phonon/mmf/audioplayer.h
@@ -44,9 +44,9 @@ namespace MMF
* @short Wrapper over MMF audio client utility
*/
class AudioPlayer : public AbstractMediaPlayer
- , public MPlayerObserverType // typedef
+ , public MPlayerObserverType // typedef
#ifdef QT_PHONON_MMF_AUDIO_DRM
- , public MAudioLoadingObserver
+ , public MAudioLoadingObserver
#endif
{
Q_OBJECT
@@ -86,6 +86,7 @@ public:
virtual void MapcPlayComplete(TInt aError);
#endif
+ CPlayerType *player() const;
Q_SIGNALS:
void totalTimeChanged(qint64 length);
void finished();
@@ -99,7 +100,6 @@ private:
* CMdaAudioPlayerUtility and CDrmPlayerUtility
*/
CPlayerType* m_player;
-
};
}
}