diff options
author | Ayan Ghosh <abghosh@codeaurora.org> | 2014-07-25 18:07:23 +0530 |
---|---|---|
committer | Linux Build Service Account <lnxbuild@localhost> | 2015-10-06 03:27:00 -0600 |
commit | 620c100fe78ccfd67d3ea1aa230c772d32d96e60 (patch) | |
tree | b08132e3704eae03e1000154a5c7f00199d11429 /cmds/media/src | |
parent | 6d08e0ed29fc9ac9ebb96c5cecf8a2787c8a0ed8 (diff) | |
download | frameworks_base-620c100fe78ccfd67d3ea1aa230c772d32d96e60.zip frameworks_base-620c100fe78ccfd67d3ea1aa230c772d32d96e60.tar.gz frameworks_base-620c100fe78ccfd67d3ea1aa230c772d32d96e60.tar.bz2 |
AVRCP 1.5 implementation
AVRCP 1.5 Implementation
Change-Id: I9a21348ec7e0c21735448ea29b781167f01e1580
Bluetooth: Add Total track number.
Add support to add total number of tracks in
Meta-data
Change-Id: I5b1287f791615adcd4f920fe5c7cae0c7c7b04ea
CRs-Fixed: 627869
Bluetooth: Modify Avrcp 1.5 implementation to adapt to latest AOSP changes
Modify Avrcp 1.5 implementation to adapt to latest AOSP changes.
CRs-Fixed: 719567
Change-Id: I0958fb12f573054f1da16df0ac46f3bec7374222
Move media player list management to Audioservice
Move media player list management to Audioservice so that
list is retained even after BT restart.
Change-Id: Ia2455e6def1900b4af2225c50e1b5325a7ce1a98
Update RemoteController on Session update
Update RemoteController on Session update in order to update
AVRCP player list to honor peer initiated browsing command.
This change fixes AVRCP browing failure due stale entry of
player session upated to AVRCP player list after device reboot.
Change-Id: I529a13e2c8a70e4b53319798c952b41f369b8bec
Introduce new interface class for Avrcp Browsing feature
Separate out Avrcp Browsing Apis from SDK interface class to
ensure compatibility with all available apps implementing the
mentioned SDK interface class.
Change-Id: I713527ee3622ba28fe92d5bc743b9471632299b3
Diffstat (limited to 'cmds/media/src')
-rw-r--r-- | cmds/media/src/com/android/commands/media/Media.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cmds/media/src/com/android/commands/media/Media.java b/cmds/media/src/com/android/commands/media/Media.java index d7f23cb..d185b56 100644 --- a/cmds/media/src/com/android/commands/media/Media.java +++ b/cmds/media/src/com/android/commands/media/Media.java @@ -222,6 +222,26 @@ public class Media extends BaseCommand { System.out.println("onVolumeInfoChanged " + info); } + @Override + public void onPlayItemResponse(boolean success) throws RemoteException { + System.out.println("onPlayItemResponse "); + } + + @Override + public void onUpdateNowPlayingEntries(long[] playList) throws RemoteException { + System.out.println("onUpdateNowPlayingEntries "); + } + + @Override + public void onUpdateFolderInfoBrowsedPlayer(String stringUri) throws RemoteException { + System.out.println("onUpdateFolderInfoBrowsedPlayer "); + } + + @Override + public void onUpdateNowPlayingContentChange() throws RemoteException { + System.out.println("onUpdateNowPlayingContentChange "); + } + void printUsageMessage() { try { System.out.println("V2Monitoring session " + mController.getTag() |