Commit d699fb5d by aquilescanta Committed by Ian Baker

Add info about trick-playness to the Format log string

PiperOrigin-RevId: 382139109
parent e272e3b1
...@@ -1630,6 +1630,9 @@ public final class Format implements Parcelable { ...@@ -1630,6 +1630,9 @@ public final class Format implements Parcelable {
if (format.label != null) { if (format.label != null) {
builder.append(", label=").append(format.label); builder.append(", label=").append(format.label);
} }
if ((format.roleFlags & C.ROLE_FLAG_TRICK_PLAY) != 0) {
builder.append(", trick-play-track");
}
return builder.toString(); return builder.toString();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment