We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02228dc commit 183b601Copy full SHA for 183b601
2 files changed
extractor/src/main/java/org/schabi/newpipe/extractor/streamdata/delivery/ProgressiveHTTPDeliveryData.java
@@ -1,5 +1,5 @@
1
package org.schabi.newpipe.extractor.streamdata.delivery;
2
3
-public interface ProgressiveHTTPDeliveryData extends DeliveryData {
+public interface ProgressiveHTTPDeliveryData extends UrlBasedDeliveryData {
4
// Nothing to implement additionally
5
}
extractor/src/main/java/org/schabi/newpipe/extractor/streamdata/stream/VideoStream.java
@@ -5,12 +5,14 @@
6
import java.util.Objects;
7
8
+import javax.annotation.Nonnull;
9
import javax.annotation.Nullable;
10
11
/**
12
* Represents a video (only) stream.
13
*/
14
public interface VideoStream extends Stream<VideoAudioMediaFormat> {
15
+ @Nonnull
16
VideoQualityData videoQualityData();
17
18
@Override
0 commit comments