You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exoplayer-amzn-2.10.6/library/sabr/src/main/java/com/google/android/exoplayer2/source/sabr/parser/SabrStream.java
Copy file name to clipboardExpand all lines: exoplayer-amzn-2.10.6/library/sabr/src/main/java/com/google/android/exoplayer2/source/sabr/parser/ump/UMPDecoder.java
+49-49Lines changed: 49 additions & 49 deletions
Original file line number
Diff line number
Diff line change
@@ -28,71 +28,71 @@ public UMPPart decode(@NonNull ExtractorInput extractorInput) {
28
28
}
29
29
}
30
30
31
-
//private long readVarInt(StreamWrapper input) throws IOException, InterruptedException {
Copy file name to clipboardExpand all lines: exoplayer-amzn-2.10.6/library/sabr/src/main/java/com/google/android/exoplayer2/source/sabr/parser/ump/UMPPart.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,4 +16,12 @@ public UMPPart(int partId, int size, ExtractorInput data) {
16
16
publicUMPInputStreamtoStream() {
17
17
returnnewUMPInputStream(this);
18
18
}
19
+
20
+
publicvoidskip() {
21
+
try {
22
+
data.skipFully(size, true);
23
+
} catch (Exceptione) {
24
+
thrownewIllegalStateException("Cannot skip part with the id: " + partId, e);
0 commit comments