Make AudioStream implements Serializable

This commit is contained in:
mauriciocolli 2017-03-10 21:08:31 -03:00 committed by GitHub
parent f63b7e8f00
commit 6cdea64dcc
1 changed files with 3 additions and 1 deletions

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 AudioStream {
public class AudioStream implements Serializable{
public String url = "";
public int format = -1;
public int bandwidth = -1;