Home
last modified time | relevance | path

Searched refs:TYPE_SS (Results 1 – 14 of 14) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/offline/
DActionFile.java125 || DownloadRequest.TYPE_SS.equals(type)); in readDownloadRequest()
148 if ((DownloadRequest.TYPE_HLS.equals(type) || DownloadRequest.TYPE_SS.equals(type))
DDownloadRequest.java45 public static final String TYPE_SS = "ss"; field in DownloadRequest
78 if (TYPE_DASH.equals(type) || TYPE_HLS.equals(type) || TYPE_SS.equals(type)) { in DownloadRequest()
DDefaultDownloaderFactory.java111 case DownloadRequest.TYPE_SS: in createDownloader()
DDownloadHelper.java426 DownloadRequest.TYPE_SS, in forSmoothStreaming()
467 case DownloadRequest.TYPE_SS: in createMediaSource()
/external/exoplayer/tree/library/common/src/test/java/com/google/android/exoplayer2/util/
DUtilTest.java88 assertThat(Util.inferContentType("http://a.b/c.ism")).isEqualTo(C.TYPE_SS); in inferContentType_returnsInferredResult()
89 assertThat(Util.inferContentType("http://a.b/c.isml")).isEqualTo(C.TYPE_SS); in inferContentType_returnsInferredResult()
90 assertThat(Util.inferContentType("http://a.b/c.ism/Manifest")).isEqualTo(C.TYPE_SS); in inferContentType_returnsInferredResult()
91 assertThat(Util.inferContentType("http://a.b/c.isml/manifest")).isEqualTo(C.TYPE_SS); in inferContentType_returnsInferredResult()
92 assertThat(Util.inferContentType("http://a.b/c.isml/manifest(filter=x)")).isEqualTo(C.TYPE_SS); in inferContentType_returnsInferredResult()
/external/exoplayer/tree/library/smoothstreaming/src/test/java/com/google/android/exoplayer2/source/smoothstreaming/offline/
DSsDownloaderTest.java51 DownloadRequest.TYPE_SS, in createWithDefaultDownloaderFactory()
/external/exoplayer/tree/library/smoothstreaming/src/test/java/com/google/android/exoplayer2/source/smoothstreaming/
DDefaultMediaSourceFactoryTest.java112 assertThat(supportedTypes).asList().containsExactly(C.TYPE_OTHER, C.TYPE_SS); in getSupportedTypes_smoothstreamingModule_containsTypeSS()
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/
DC.java599 @IntDef({TYPE_DASH, TYPE_SS, TYPE_HLS, TYPE_OTHER})
608 public static final int TYPE_SS = 1; field in C
/external/exoplayer/tree/demos/main/src/main/java/com/google/android/exoplayer2/demo/
DDownloadTracker.java134 case C.TYPE_SS: in getDownloadHelper()
DIntentUtil.java150 case C.TYPE_SS: in inferAdaptiveStreamMimeType()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DDefaultMediaSourceFactory.java380 C.TYPE_SS, in loadDelegates()
/external/exoplayer/tree/library/smoothstreaming/src/main/java/com/google/android/exoplayer2/source/smoothstreaming/
DSsMediaSource.java323 return new int[] {C.TYPE_SS}; in getSupportedTypes()
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/util/
DUtil.java1665 return C.TYPE_SS; in inferContentType()
1688 return C.TYPE_SS; in inferContentTypeWithMimeType()
/external/exoplayer/tree/extensions/ima/src/main/java/com/google/android/exoplayer2/ext/ima/
DImaAdsLoader.java580 } else if (contentType == C.TYPE_SS) { in setSupportedContentTypes()