mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 17:12:31 -06:00
15 lines
315 B
Java
15 lines
315 B
Java
|
package com.google.android.exoplayer2;
|
||
|
|
||
|
import com.google.android.exoplayer2.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;
|
||
|
}
|
||
|
}
|