Changeset 651 for trunk/src/3rdparty/phonon/mmf/bassboost.h
- Timestamp:
- Mar 8, 2010, 12:52:58 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.2 (added) merged: 650 /branches/vendor/nokia/qt/current merged: 649 /branches/vendor/nokia/qt/4.6.1 removed
- Property svn:mergeinfo changed
-
trunk/src/3rdparty/phonon/mmf/bassboost.h
r561 r651 22 22 #include "abstractaudioeffect.h" 23 23 24 class CBassBoost; 25 24 26 QT_BEGIN_NAMESPACE 25 27 … … 29 31 { 30 32 /** 31 * @short An "bass boost" effect. 32 * 33 * The documentation does not say what "bass boost" is, neither has it anykind 34 * of setting. It's an on or off thing. 33 * @short A "bass boost" effect. 35 34 */ 36 35 class BassBoost : public AbstractAudioEffect … … 38 37 Q_OBJECT 39 38 public: 40 BassBoost(QObject *parent); 39 BassBoost(QObject *parent, const QList<EffectParameter> ¶meters); 40 41 // Static interface required by EffectFactory 42 static const char* description(); 43 static bool getParameters(CMdaAudioOutputStream *stream, 44 QList<EffectParameter>& parameters); 41 45 42 46 protected: 43 47 // AbstractAudioEffect 44 virtual void connectAudioPlayer(AudioPlayer::NativePlayer *player); 45 virtual void applyParameters(); 46 virtual void parameterChanged(const int id, const QVariant &value); 48 virtual void createEffect(AudioPlayer::NativePlayer *player); 49 50 private: 51 CBassBoost *concreteEffect(); 47 52 48 53 };
Note:
See TracChangeset
for help on using the changeset viewer.