Ignore:
Timestamp:
Mar 8, 2010, 12:52:58 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.2 sources.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/3rdparty/phonon/mmf/bassboost.h

    r561 r651  
    2222#include "abstractaudioeffect.h"
    2323
     24class CBassBoost;
     25
    2426QT_BEGIN_NAMESPACE
    2527
     
    2931{
    3032/**
    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.
    3534 */
    3635class BassBoost : public AbstractAudioEffect
     
    3837    Q_OBJECT
    3938public:
    40     BassBoost(QObject *parent);
     39    BassBoost(QObject *parent, const QList<EffectParameter> &parameters);
     40
     41    // Static interface required by EffectFactory
     42    static const char* description();
     43    static bool getParameters(CMdaAudioOutputStream *stream,
     44        QList<EffectParameter>& parameters);
    4145
    4246protected:
    4347    // 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
     50private:
     51    CBassBoost *concreteEffect();
    4752
    4853};
Note: See TracChangeset for help on using the changeset viewer.