summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/phonon
diff options
context:
space:
mode:
authorFrans Englich <frans.englich@nokia.com>2009-09-21 13:36:47 (GMT)
committerFrans Englich <frans.englich@nokia.com>2009-09-23 12:39:59 (GMT)
commitc82f3b18ba300f09688fe410cf09b219a0fd6d44 (patch)
treebe8bfd45a96d49ad8e546d0739dc3060e9c592cf /src/3rdparty/phonon
parent1212b4c995ed9daf88183b1c0995f7115c9de97d (diff)
downloadQt-c82f3b18ba300f09688fe410cf09b219a0fd6d44.zip
Qt-c82f3b18ba300f09688fe410cf09b219a0fd6d44.tar.gz
Qt-c82f3b18ba300f09688fe410cf09b219a0fd6d44.tar.bz2
Don't list effects which aren't fully implemented.
Diffstat (limited to 'src/3rdparty/phonon')
-rw-r--r--src/3rdparty/phonon/mmf/effectfactory.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/3rdparty/phonon/mmf/effectfactory.cpp b/src/3rdparty/phonon/mmf/effectfactory.cpp
index f33af68..4acaaa4 100644
--- a/src/3rdparty/phonon/mmf/effectfactory.cpp
+++ b/src/3rdparty/phonon/mmf/effectfactory.cpp
@@ -123,6 +123,7 @@ QList<int> EffectFactory::effectIndexes()
if (isEffectSupported<CBassBoost>())
retval.append(AbstractAudioEffect::EffectBassBoost);
+ /* We haven't implemented these yet.
if (isEffectSupported<CDistanceAttenuation>())
retval.append(AbstractAudioEffect::EffectDistanceAttenuation);
@@ -140,6 +141,7 @@ QList<int> EffectFactory::effectIndexes()
if (isEffectSupported<CStereoWidening>())
retval.append(AbstractAudioEffect::EffectStereoWidening);
+ */
return retval;
}