2017-06-29 18:12:55 +00:00
|
|
|
package org.schabi.newpipe.extractor.stream;
|
2017-03-01 17:47:52 +00:00
|
|
|
|
2017-06-29 18:12:55 +00:00
|
|
|
/*
|
2017-03-01 17:47:52 +00:00
|
|
|
* Created by Christian Schabesberger on 04.03.16.
|
2017-06-29 18:12:55 +00:00
|
|
|
*
|
2017-03-01 17:47:52 +00:00
|
|
|
* Copyright (C) Christian Schabesberger 2016 <chris.schabesberger@mailbox.org>
|
|
|
|
* VideoStream.java is part of NewPipe.
|
2017-06-29 18:12:55 +00:00
|
|
|
*
|
2017-03-01 17:47:52 +00: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-06-29 18:12:55 +00:00
|
|
|
*
|
2017-03-01 17:47:52 +00: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-06-29 18:12:55 +00:00
|
|
|
*
|
2017-03-01 17:47:52 +00: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-07-11 03:08:03 +00:00
|
|
|
public class VideoStream extends Stream {
|
|
|
|
public String resolution;
|
|
|
|
public boolean isVideoOnly;
|
2017-03-01 17:47:52 +00:00
|
|
|
|
|
|
|
public VideoStream(String url, int format, String res) {
|
2017-07-11 03:08:03 +00:00
|
|
|
this(url, format, res, false);
|
2017-03-01 17:47:52 +00:00
|
|
|
}
|
|
|
|
|
2017-07-11 03:08:03 +00:00
|
|
|
public VideoStream(String url, int format, String res, boolean isVideoOnly) {
|
|
|
|
super(url, format);
|
2017-04-12 00:55:53 +00:00
|
|
|
this.resolution = res;
|
|
|
|
this.isVideoOnly = isVideoOnly;
|
|
|
|
}
|
|
|
|
|
2017-07-11 03:08:03 +00:00
|
|
|
@Override
|
|
|
|
public boolean equalStats(Stream cmp) {
|
|
|
|
return super.equalStats(cmp) && cmp instanceof VideoStream &&
|
|
|
|
resolution.equals(((VideoStream) cmp).resolution) &&
|
|
|
|
isVideoOnly == ((VideoStream) cmp).isVideoOnly;
|
2017-03-01 17:47:52 +00:00
|
|
|
}
|
|
|
|
}
|