mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Regroup final/non-final vars
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=167717715
This commit is contained in:
parent
c6fa034eba
commit
7d4190f3c8
1 changed files with 18 additions and 18 deletions
|
|
@ -58,30 +58,30 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
private static final int MSG_KEYS = 1;
|
private static final int MSG_KEYS = 1;
|
||||||
private static final int MAX_LICENSE_DURATION_TO_RENEW = 60;
|
private static final int MAX_LICENSE_DURATION_TO_RENEW = 60;
|
||||||
|
|
||||||
private final Handler eventHandler;
|
|
||||||
private final DefaultDrmSessionManager.EventListener eventListener;
|
|
||||||
private final ExoMediaDrm<T> mediaDrm;
|
private final ExoMediaDrm<T> mediaDrm;
|
||||||
private final HashMap<String, String> optionalKeyRequestParameters;
|
|
||||||
/* package */ final MediaDrmCallback callback;
|
|
||||||
/* package */ final UUID uuid;
|
|
||||||
/* package */ PostResponseHandler postResponseHandler;
|
|
||||||
private HandlerThread requestHandlerThread;
|
|
||||||
private Handler postRequestHandler;
|
|
||||||
|
|
||||||
@DefaultDrmSessionManager.Mode
|
|
||||||
private final int mode;
|
|
||||||
private int openCount;
|
|
||||||
private final AtomicBoolean provisioningInProgress;
|
|
||||||
private final EventListener sessionEventListener;
|
|
||||||
@DrmSession.State
|
|
||||||
private int state;
|
|
||||||
private T mediaCrypto;
|
|
||||||
private DrmSessionException lastException;
|
|
||||||
private final byte[] initData;
|
private final byte[] initData;
|
||||||
private final String mimeType;
|
private final String mimeType;
|
||||||
|
private final @DefaultDrmSessionManager.Mode int mode;
|
||||||
|
private final HashMap<String, String> optionalKeyRequestParameters;
|
||||||
|
private final Handler eventHandler;
|
||||||
|
private final DefaultDrmSessionManager.EventListener eventListener;
|
||||||
|
private final AtomicBoolean provisioningInProgress;
|
||||||
|
private final EventListener sessionEventListener;
|
||||||
|
|
||||||
|
/* package */ final MediaDrmCallback callback;
|
||||||
|
/* package */ final UUID uuid;
|
||||||
|
|
||||||
|
private @DrmSession.State int state;
|
||||||
|
private int openCount;
|
||||||
|
private HandlerThread requestHandlerThread;
|
||||||
|
private Handler postRequestHandler;
|
||||||
|
private T mediaCrypto;
|
||||||
|
private DrmSessionException lastException;
|
||||||
private byte[] sessionId;
|
private byte[] sessionId;
|
||||||
private byte[] offlineLicenseKeySetId;
|
private byte[] offlineLicenseKeySetId;
|
||||||
|
|
||||||
|
/* package */ PostResponseHandler postResponseHandler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Instantiates a new DRM session.
|
* Instantiates a new DRM session.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue