NewPipeExtractor/stream_info/VideoStream.java

53 lines
1.8 KiB
Java
Raw Normal View History

2017-03-01 18:47:52 +01:00
package org.schabi.newpipe.extractor.stream_info;
import java.io.Serializable;
2017-03-01 18:47:52 +01:00
/**
* Created by Christian Schabesberger on 04.03.16.
2017-04-12 02:55:53 +02:00
* <p>
2017-03-01 18:47:52 +01:00
* Copyright (C) Christian Schabesberger 2016 <chris.schabesberger@mailbox.org>
* VideoStream.java is part of NewPipe.
2017-04-12 02:55:53 +02:00
* <p>
2017-03-01 18:47:52 +01:00
* NewPipe is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2017-04-12 02:55:53 +02:00
* <p>
2017-03-01 18:47:52 +01:00
* NewPipe is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2017-04-12 02:55:53 +02:00
* <p>
2017-03-01 18:47:52 +01:00
* You should have received a copy of the GNU General Public License
* along with NewPipe. If not, see <http://www.gnu.org/licenses/>.
*/
2017-04-12 02:55:53 +02:00
public class VideoStream implements Serializable {
2017-03-01 18:47:52 +01:00
//url of the stream
public String url = "";
public int format = -1;
public String resolution = "";
2017-04-12 02:55:53 +02:00
public boolean isVideoOnly = false;
2017-03-01 18:47:52 +01:00
public VideoStream(String url, int format, String res) {
2017-04-12 02:55:53 +02:00
this(false, url, format, res);
2017-03-01 18:47:52 +01:00
}
2017-04-12 02:55:53 +02:00
public VideoStream(boolean isVideoOnly, String url, int format, String res) {
this.url = url;
this.format = format;
this.resolution = res;
this.isVideoOnly = isVideoOnly;
}
// reveals whether two streams are the same, but have diferent urls
2017-03-01 18:47:52 +01:00
public boolean equalStats(VideoStream cmp) {
2017-04-12 02:55:53 +02:00
return format == cmp.format && resolution.equals(cmp.resolution);
2017-03-01 18:47:52 +01:00
}
2017-04-12 02:55:53 +02:00
// reveals whether two streams are equal
2017-03-01 18:47:52 +01:00
public boolean equals(VideoStream cmp) {
2017-04-12 02:55:53 +02:00
return cmp != null && equalStats(cmp) && url.equals(cmp.url);
2017-03-01 18:47:52 +01:00
}
}