0
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor.git synced 2024-09-20 03:52:25 +02:00

Make VideoStream implements Serializable

This commit is contained in:
mauriciocolli 2017-03-10 21:09:37 -03:00 committed by GitHub
parent 6cdea64dcc
commit 7d0748c610

View File

@ -1,5 +1,7 @@
package org.schabi.newpipe.extractor.stream_info;
import java.io.Serializable;
/**
* Created by Christian Schabesberger on 04.03.16.
*
@ -20,7 +22,7 @@ package org.schabi.newpipe.extractor.stream_info;
* along with NewPipe. If not, see <http://www.gnu.org/licenses/>.
*/
public class VideoStream {
public class VideoStream implements Serializable{
//url of the stream
public String url = "";
public int format = -1;