Home
last modified time | relevance | path

Searched refs:encryptedBlocks (Results 1 – 4 of 4) sorted by relevance

/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/decoder/
DCryptoInfo.java69 public int encryptedBlocks; field in CryptoInfo
87 byte[] key, byte[] iv, @C.CryptoMode int mode, int encryptedBlocks, int clearBlocks) { in set() argument
94 this.encryptedBlocks = encryptedBlocks; in set()
105 patternHolder.set(encryptedBlocks, clearBlocks); in set()
162 private void set(int encryptedBlocks, int clearBlocks) { in set() argument
163 pattern.set(encryptedBlocks, clearBlocks); in set()
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/
DTrackOutput.java55 public final int encryptedBlocks; field in TrackOutput.CryptoData
69 public CryptoData(@C.CryptoMode int cryptoMode, byte[] encryptionKey, int encryptedBlocks, in CryptoData() argument
73 this.encryptedBlocks = encryptedBlocks; in CryptoData()
86 return cryptoMode == other.cryptoMode && encryptedBlocks == other.encryptedBlocks in equals()
94 result = 31 * result + encryptedBlocks; in hashCode()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/mediacodec/
DAsynchronousMediaCodecBufferEnqueuerTest.java270 int encryptedBlocks = 16; in createCryptoInfo() local
279 encryptedBlocks, in createCryptoInfo()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DSampleDataQueue.java287 cryptoData.encryptedBlocks, in readEncryptionData()