Skip to content

Commit 2bb7c12

Browse files
author
Bryan Mawhinney
committed
Add text representation of ROUTE_TYPE_LIVE_VIDEO (for debugging)
Change-Id: Id8fa45aefde85e2ba2b57694b91485ef25e2e5f2
1 parent 8074e98 commit 2bb7c12

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

media/java/android/media/MediaRouter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,9 @@ static String typesToString(int types) {
239239
if ((types & ROUTE_TYPE_LIVE_AUDIO) != 0) {
240240
result.append("ROUTE_TYPE_LIVE_AUDIO ");
241241
}
242+
if ((types & ROUTE_TYPE_LIVE_VIDEO) != 0) {
243+
result.append("ROUTE_TYPE_LIVE_VIDEO ");
244+
}
242245
if ((types & ROUTE_TYPE_USER) != 0) {
243246
result.append("ROUTE_TYPE_USER ");
244247
}

0 commit comments

Comments
 (0)