當前位置: 首頁>>代碼示例>>Java>>正文


Java ProtectionElement類代碼示例

本文整理匯總了Java中com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest.ProtectionElement的典型用法代碼示例。如果您正苦於以下問題:Java ProtectionElement類的具體用法?Java ProtectionElement怎麽用?Java ProtectionElement使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


ProtectionElement類屬於com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest包,在下文中一共展示了ProtectionElement類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: SsMediaPeriod

import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest.ProtectionElement; //導入依賴的package包/類
public SsMediaPeriod(SsManifest manifest, SsChunkSource.Factory chunkSourceFactory,
    int minLoadableRetryCount, EventDispatcher eventDispatcher,
    LoaderErrorThrower manifestLoaderErrorThrower, Allocator allocator) {
  this.chunkSourceFactory = chunkSourceFactory;
  this.manifestLoaderErrorThrower = manifestLoaderErrorThrower;
  this.minLoadableRetryCount = minLoadableRetryCount;
  this.eventDispatcher = eventDispatcher;
  this.allocator = allocator;

  trackGroups = buildTrackGroups(manifest);
  ProtectionElement protectionElement = manifest.protectionElement;
  if (protectionElement != null) {
    byte[] keyId = getProtectionElementKeyId(protectionElement.data);
    trackEncryptionBoxes = new TrackEncryptionBox[] {
        new TrackEncryptionBox(true, INITIALIZATION_VECTOR_SIZE, keyId)};
  } else {
    trackEncryptionBoxes = null;
  }
  this.manifest = manifest;
  sampleStreams = newSampleStreamArray(0);
  sequenceableLoader = new CompositeSequenceableLoader(sampleStreams);
}
 
開發者ID:jcodeing,項目名稱:K-Sonic,代碼行數:23,代碼來源:SsMediaPeriod.java

示例2: SsMediaPeriod

import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest.ProtectionElement; //導入依賴的package包/類
public SsMediaPeriod(SsManifest manifest, SsChunkSource.Factory chunkSourceFactory,
    int minLoadableRetryCount, EventDispatcher eventDispatcher,
    LoaderErrorThrower manifestLoaderErrorThrower, Allocator allocator) {
  this.chunkSourceFactory = chunkSourceFactory;
  this.manifestLoaderErrorThrower = manifestLoaderErrorThrower;
  this.minLoadableRetryCount = minLoadableRetryCount;
  this.eventDispatcher = eventDispatcher;
  this.allocator = allocator;

  trackGroups = buildTrackGroups(manifest);
  ProtectionElement protectionElement = manifest.protectionElement;
  if (protectionElement != null) {
    byte[] keyId = getProtectionElementKeyId(protectionElement.data);
    // We assume pattern encryption does not apply.
    trackEncryptionBoxes = new TrackEncryptionBox[] {
        new TrackEncryptionBox(true, null, INITIALIZATION_VECTOR_SIZE, keyId, 0, 0, null)};
  } else {
    trackEncryptionBoxes = null;
  }
  this.manifest = manifest;
  sampleStreams = newSampleStreamArray(0);
  sequenceableLoader = new CompositeSequenceableLoader(sampleStreams);
}
 
開發者ID:y20k,項目名稱:transistor,代碼行數:24,代碼來源:SsMediaPeriod.java

示例3: build

import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest.ProtectionElement; //導入依賴的package包/類
@Override
public Object build() {
  return new ProtectionElement(uuid, PsshAtomUtil.buildPsshAtom(uuid, initData));
}
 
開發者ID:jcodeing,項目名稱:K-Sonic,代碼行數:5,代碼來源:SsManifestParser.java


注:本文中的com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest.ProtectionElement類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。