Add info about trick-playness to the Format log string

PiperOrigin-RevId: 382139109
This commit is contained in:
aquilescanta 2021-06-29 20:19:50 +01:00 committed by Ian Baker
parent e272e3b1c8
commit d699fb5dd9

View file

@ -1630,6 +1630,9 @@ public final class Format implements Parcelable {
if (format.label != null) {
builder.append(", label=").append(format.label);
}
if ((format.roleFlags & C.ROLE_FLAG_TRICK_PLAY) != 0) {
builder.append(", trick-play-track");
}
return builder.toString();
}