Commit 764f9f20 by aquilescanta Committed by Oliver Woodman

Add info about trick-playness to the Format log string

PiperOrigin-RevId: 382139109
parent 6e4508da
...@@ -1365,6 +1365,9 @@ public final class Format implements Parcelable { ...@@ -1365,6 +1365,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