mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
16 lines
345 B
Java
16 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;
|
||
|
}
|
||
|
}
|