Searched refs:cryptoInfo (Results 1 – 1 of 1) sorted by relevance
186 @NonNull MediaCodec.CryptoInfo cryptoInfo) { in descramble() argument189 if (cryptoInfo.numSubSamples <= 0) { in descramble()191 "Invalid CryptoInfo: invalid numSubSamples=" + cryptoInfo.numSubSamples); in descramble()192 } else if (cryptoInfo.numBytesOfClearData == null in descramble()193 && cryptoInfo.numBytesOfEncryptedData == null) { in descramble()196 } else if (cryptoInfo.numBytesOfClearData != null in descramble()197 && cryptoInfo.numBytesOfClearData.length < cryptoInfo.numSubSamples) { in descramble()200 } else if (cryptoInfo.numBytesOfEncryptedData != null in descramble()201 && cryptoInfo.numBytesOfEncryptedData.length < cryptoInfo.numSubSamples) { in descramble()204 } else if (cryptoInfo.key == null || cryptoInfo.key.length != 16) { in descramble()[all …]