Skip to content

Commit 183b601

Browse files
committed
Fixed API
1 parent 02228dc commit 183b601

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package org.schabi.newpipe.extractor.streamdata.delivery;
22

3-
public interface ProgressiveHTTPDeliveryData extends DeliveryData {
3+
public interface ProgressiveHTTPDeliveryData extends UrlBasedDeliveryData {
44
// Nothing to implement additionally
55
}

extractor/src/main/java/org/schabi/newpipe/extractor/streamdata/stream/VideoStream.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55

66
import java.util.Objects;
77

8+
import javax.annotation.Nonnull;
89
import javax.annotation.Nullable;
910

1011
/**
1112
* Represents a video (only) stream.
1213
*/
1314
public interface VideoStream extends Stream<VideoAudioMediaFormat> {
15+
@Nonnull
1416
VideoQualityData videoQualityData();
1517

1618
@Override

0 commit comments

Comments
 (0)