mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Add HlsTrackMetadataEntry.toString
It's printed out by EventLogger, and currently looks pretty ugly PiperOrigin-RevId: 250772010
This commit is contained in:
parent
7e187283cd
commit
b47f37fbcd
1 changed files with 5 additions and 0 deletions
|
|
@ -184,6 +184,11 @@ public final class HlsTrackMetadataEntry implements Metadata.Entry {
|
||||||
this.variantInfos = Collections.unmodifiableList(variantInfos);
|
this.variantInfos = Collections.unmodifiableList(variantInfos);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "HlsTrackMetadataEntry" + (groupId != null ? (" [" + groupId + ", " + name + "]") : "");
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(@Nullable Object other) {
|
public boolean equals(@Nullable Object other) {
|
||||||
if (this == other) {
|
if (this == other) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue