mirror of
https://github.com/androidx/media.git
synced 2025-05-17 12:39:52 +08:00
Remove dead code from SmoothStreamingChunkSource
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=127232159
This commit is contained in:
parent
6b4918fa9b
commit
ea0cfdeeb1
@ -60,7 +60,6 @@ public class SmoothStreamingChunkSource implements ChunkSource {
|
|||||||
|
|
||||||
private SmoothStreamingManifest manifest;
|
private SmoothStreamingManifest manifest;
|
||||||
private int currentManifestChunkOffset;
|
private int currentManifestChunkOffset;
|
||||||
private boolean needManifestRefresh;
|
|
||||||
|
|
||||||
private IOException fatalError;
|
private IOException fatalError;
|
||||||
|
|
||||||
@ -132,11 +131,6 @@ public class SmoothStreamingChunkSource implements ChunkSource {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
manifest = newManifest;
|
manifest = newManifest;
|
||||||
needManifestRefresh = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean needManifestRefresh() {
|
|
||||||
return needManifestRefresh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ChunkSource implementation.
|
// ChunkSource implementation.
|
||||||
@ -182,11 +176,8 @@ public class SmoothStreamingChunkSource implements ChunkSource {
|
|||||||
|
|
||||||
StreamElement streamElement = manifest.streamElements[elementIndex];
|
StreamElement streamElement = manifest.streamElements[elementIndex];
|
||||||
if (streamElement.chunkCount == 0) {
|
if (streamElement.chunkCount == 0) {
|
||||||
if (manifest.isLive) {
|
// There aren't any chunks for us to load.
|
||||||
needManifestRefresh = true;
|
out.endOfStream = !manifest.isLive;
|
||||||
} else {
|
|
||||||
out.endOfStream = true;
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -202,7 +193,6 @@ public class SmoothStreamingChunkSource implements ChunkSource {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
needManifestRefresh = manifest.isLive && chunkIndex >= streamElement.chunkCount - 1;
|
|
||||||
if (chunkIndex >= streamElement.chunkCount) {
|
if (chunkIndex >= streamElement.chunkCount) {
|
||||||
// This is beyond the last chunk in the current manifest.
|
// This is beyond the last chunk in the current manifest.
|
||||||
out.endOfStream = !manifest.isLive;
|
out.endOfStream = !manifest.isLive;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user