diff options
author | Adam Powell <adamp@google.com> | 2012-09-17 13:30:51 -0700 |
---|---|---|
committer | Adam Powell <adamp@google.com> | 2012-09-28 11:46:40 -0700 |
commit | 705ab808cf023e0cc38c2ba7cdb9571942cdc04f (patch) | |
tree | dd1c161124956ff7c1edcabcecb67725d7c170c4 /api | |
parent | 9dbbfcda81f251f23aded866f7f9d49d8a744c75 (diff) | |
download | frameworks_base-705ab808cf023e0cc38c2ba7cdb9571942cdc04f.zip frameworks_base-705ab808cf023e0cc38c2ba7cdb9571942cdc04f.tar.gz frameworks_base-705ab808cf023e0cc38c2ba7cdb9571942cdc04f.tar.bz2 |
Add wireless display selection support to MediaRouter.
* Adds the new route type LIVE_VIDEO
* Wireless displays support both LIVE_VIDEO and LIVE_AUDIO, making
wireless display routes valid selections in when apps make selecting
live audio routes available.
* MediaRouter will only report/manipulate wireless displays that have
already been paired at the system level.
Bug 7177920
Change-Id: Ic221b8687d77b4c0df9801c396b74870e86206e9
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index e8f911b..f6c4f24 100644 --- a/api/current.txt +++ b/api/current.txt @@ -11750,6 +11750,7 @@ package android.media { method public void removeUserRoute(android.media.MediaRouter.UserRouteInfo); method public void selectRoute(int, android.media.MediaRouter.RouteInfo); field public static final int ROUTE_TYPE_LIVE_AUDIO = 1; // 0x1 + field public static final int ROUTE_TYPE_LIVE_VIDEO = 2; // 0x2 field public static final int ROUTE_TYPE_USER = 8388608; // 0x800000 } @@ -11798,6 +11799,7 @@ package android.media { method public int getVolume(); method public int getVolumeHandling(); method public int getVolumeMax(); + method public boolean isEnabled(); method public void requestSetVolume(int); method public void requestUpdateVolume(int); method public void setTag(java.lang.Object); |