diff options
author | Frans Englich <frans.englich@nokia.com> | 2009-09-18 17:50:57 +0200 |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-09-23 14:39:37 +0200 |
commit | 613e1ea9ef9e1cc7fdbfa5882432e9e6df003544 (patch) | |
tree | 171d10c8ae8edd5cb860d314ae03bae00ae80122 /src/3rdparty/phonon/mmf/effectfactory.cpp | |
parent | a68a747e9d97962e0d18bf852450192898163f14 (diff) | |
download | qt4-tools-613e1ea9ef9e1cc7fdbfa5882432e9e6df003544.tar.gz |
RoomLevel is not available in SDK 3.1, remove it.
In any case, we haven't implemented this effect.
Diffstat (limited to 'src/3rdparty/phonon/mmf/effectfactory.cpp')
-rw-r--r-- | src/3rdparty/phonon/mmf/effectfactory.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/3rdparty/phonon/mmf/effectfactory.cpp b/src/3rdparty/phonon/mmf/effectfactory.cpp index 41f48d256d..f33af685ec 100644 --- a/src/3rdparty/phonon/mmf/effectfactory.cpp +++ b/src/3rdparty/phonon/mmf/effectfactory.cpp @@ -26,7 +26,6 @@ along with this library. If not, see <http://www.gnu.org/licenses/>. #include <ListenerOrientationBase.h> #include <LocationBase.h> #include <LoudnessBase.h> -#include <RoomLevelBase.h> #include <SourceOrientationBase.h> #include <StereoWideningBase.h> @@ -69,7 +68,6 @@ QHash<QByteArray, QVariant> EffectFactory::audioEffectDescriptions(AbstractAudio return constructEffectDescription(QObject::tr("Environmental Reverb"), "Environmental Reverb."); case AbstractAudioEffect::EffectLoudness: return constructEffectDescription(QObject::tr("Loudness"), "Loudness."); - //case EffectRoomLevel: case AbstractAudioEffect::EffectSourceOrientation: return constructEffectDescription(QObject::tr("Source Orientation"), "Source Orientation."); case AbstractAudioEffect::EffectStereoWidening: @@ -95,7 +93,6 @@ AbstractAudioEffect *EffectFactory::createAudioEffect(AbstractAudioEffect::Type case AbstractAudioEffect::EffectEnvironmentalReverb: case AbstractAudioEffect::EffectListenerOrientation: case AbstractAudioEffect::EffectLoudness: - //AbstractAudioEffect::EffectRoomLevel, case AbstractAudioEffect::EffectSourceOrientation: case AbstractAudioEffect::EffectStereoWidening: ; @@ -141,11 +138,6 @@ QList<int> EffectFactory::effectIndexes() if (isEffectSupported<CSourceOrientation>()) retval.append(AbstractAudioEffect::EffectSourceOrientation); - /* - if (isEffectSupported<CRoomLevel>()) - retval.append(EffectRoomLevel); - */ - if (isEffectSupported<CStereoWidening>()) retval.append(AbstractAudioEffect::EffectStereoWidening); |