summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorRoman Birg <roman@cyngn.com>2016-02-23 13:40:33 -0800
committerRoman Birg <roman@cyngn.com>2016-02-23 13:40:33 -0800
commit524fde7ce62f3535a834c116990e6c80c244ae0b (patch)
treecd402ca951482b6980d9bd08982ae2cd09d8ac3b /AndroidManifest.xml
parenta1208e1e381dbeb6ecc5a1d87e7be1df8272dc3d (diff)
downloadandroid_packages_apps_AudioFX-524fde7ce62f3535a834c116990e6c80c244ae0b.tar.gz
android_packages_apps_AudioFX-524fde7ce62f3535a834c116990e6c80c244ae0b.tar.bz2
android_packages_apps_AudioFX-524fde7ce62f3535a834c116990e6c80c244ae0b.zip
AudioFX: remove new session middle man
We have an extra hop in creating effects - just move this logic directly to the service so it can bring up effects as fast as possible. Ref: OPO-223 Change-Id: Ib2bacca095c1724be269ed98121765299eac081b Signed-off-by: Roman Birg <roman@cyngn.com>
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 2 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 5533e3c..cf38f0c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -93,16 +93,14 @@
</intent-filter>
</activity>
- <service android:name=".service.AudioFxService"/>
-
- <receiver android:name=".receiver.ServiceDispatcher">
+ <service android:name=".service.AudioFxService">
<intent-filter>
<action android:name="android.media.action.OPEN_AUDIO_EFFECT_CONTROL_SESSION"/>
<action android:name="android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION"/>
<action android:name="android.media.AUDIO_BECOMING_NOISY"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
- </receiver>
+ </service>
<receiver android:name=".service.BootReceiver">
<intent-filter>