mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 17:12:31 -06:00
15 lines
345 B
Java
15 lines
345 B
Java
package androidx.media3.exoplayer;
|
|
|
|
import androidx.media3.common.Format;
|
|
import androidx.media3.exoplayer.drm.DrmSession;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class FormatHolder {
|
|
public DrmSession drmSession;
|
|
public Format format;
|
|
|
|
public void clear() {
|
|
this.drmSession = null;
|
|
this.format = null;
|
|
}
|
|
}
|