[MediaCCC] Return empty list of video-only streams instead of null

This commit is contained in:
Stypox 2020-04-11 17:43:26 +02:00
parent 8dc3f28618
commit a4097d8d01
No known key found for this signature in database
GPG key ID: 4BDF1B40A49FDD23

View file

@ -197,7 +197,7 @@ public class MediaCCCStreamExtractor extends StreamExtractor {
@Override @Override
public List<VideoStream> getVideoOnlyStreams() { public List<VideoStream> getVideoOnlyStreams() {
return null; return Collections.emptyList();
} }
@Nonnull @Nonnull