summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/audiofx/audiofx/backends/IEffectFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/cyanogenmod/audiofx/audiofx/backends/IEffectFactory.java')
-rw-r--r--src/org/cyanogenmod/audiofx/audiofx/backends/IEffectFactory.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/org/cyanogenmod/audiofx/audiofx/backends/IEffectFactory.java b/src/org/cyanogenmod/audiofx/audiofx/backends/IEffectFactory.java
deleted file mode 100644
index 8e629b8..0000000
--- a/src/org/cyanogenmod/audiofx/audiofx/backends/IEffectFactory.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.cyngn.audiofx.backends;
-
-import android.content.Context;
-import android.media.AudioDeviceInfo;
-
-interface IEffectFactory {
-
- /**
- * Create a new EffectSet based on current stream parameters.
- * @param context context to create the effect with
- * @param sessionId session id to attach the effect to
- * @param currentDevice current device that the effect should initially setup for
- * @return an {@link EffectSet}
- */
- EffectSet createEffectSet(Context context, int sessionId, AudioDeviceInfo currentDevice);
-}