mirror of
https://github.com/TeamNewPipe/NewPipeExtractor
synced 2025-09-02 07:15:37 +00:00
Make AudioStream implements Serializable
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
package org.schabi.newpipe.extractor.stream_info;
|
package org.schabi.newpipe.extractor.stream_info;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Christian Schabesberger on 04.03.16.
|
* 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/>.
|
* along with NewPipe. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class AudioStream {
|
public class AudioStream implements Serializable{
|
||||||
public String url = "";
|
public String url = "";
|
||||||
public int format = -1;
|
public int format = -1;
|
||||||
public int bandwidth = -1;
|
public int bandwidth = -1;
|
||||||
|
Reference in New Issue
Block a user