Fixed some typos and removed unused imports.

This commit is contained in:
Soofe 2015-10-15 23:25:53 +02:00
parent b7c0a77edc
commit c068f08ff8
11 changed files with 58 additions and 97 deletions

View file

@ -110,13 +110,13 @@ public class VideoInfo {
}
public static class AudioStream {
public AudioStream(String url, int format, int bandWidth, int samplingRate) {
public AudioStream(String url, int format, int bandwidth, int samplingRate) {
this.url = url; this.format = format;
this.bandWidth = bandWidth; this.samplingRate = samplingRate;
this.bandwidth = bandwidth; this.samplingRate = samplingRate;
}
public String url = "";
public int format = -1;
public int bandWidth = -1;
public int bandwidth = -1;
public int samplingRate = -1;
}