Skip to content

Commit 33c0a61

Browse files
Bryan MawhinneyAndroid (Google) Code Review
authored andcommitted
Merge "Add text representation of ROUTE_TYPE_LIVE_VIDEO (for debugging)" into jb-mr1-dev
2 parents ead7d90 + 2bb7c12 commit 33c0a61

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)