From 10024b3dc12a8552c1547b67810c77b865045cc8 Mon Sep 17 00:00:00 2001 From: Mike Lockwood Date: Thu, 11 Dec 2014 13:44:20 -0800 Subject: MidiManager updates: MIDI ports are now implemented as file descriptors directly between the sender and receiver, so the MidiService is no longer in the message path. To facilitate the above, each port has its own file descriptor, rather than multiplexing all ports on a device through a single socket. Added a new class MidiDeviceServer, which is used by implementors of MIDI devices. This replaces the MidiVirtualDevice class (which only was included in changes that were reviewed but never submitted). The USB MIDI implementation has moved from the MIDI service to the USB service. The USB MIDI implementation uses MidiDeviceServer as its interface, so we now have a common interface for all MIDI device implementations. Change-Id: I8effd1583f344beb6c940c3a24dbf20b477a6436 --- Android.mk | 1 + 1 file changed, 1 insertion(+) (limited to 'Android.mk') diff --git a/Android.mk b/Android.mk index 76d3a13..11d4c63 100644 --- a/Android.mk +++ b/Android.mk @@ -174,6 +174,7 @@ LOCAL_SRC_FILES += \ core/java/android/hardware/location/IGeofenceHardwareMonitorCallback.aidl \ core/java/android/hardware/soundtrigger/IRecognitionStatusCallback.aidl \ core/java/android/hardware/usb/IUsbManager.aidl \ + core/java/android/midi/IMidiDeviceServer.aidl \ core/java/android/midi/IMidiListener.aidl \ core/java/android/midi/IMidiManager.aidl \ core/java/android/net/IConnectivityManager.aidl \ -- cgit v1.1