Remove deprecated bandwidth parameter.

This commit is contained in:
Oliver Woodman 2015-04-10 22:39:15 +01:00
parent c901025643
commit 70b0e55a8b

View File

@ -84,14 +84,6 @@ public class Format {
*/
public final String language;
/**
* The average bandwidth in bytes per second.
*
* @deprecated Use {@link #bitrate}. However note that the units of measurement are different.
*/
@Deprecated
public final int bandwidth;
/**
* @param id The format identifier.
* @param mimeType The format mime type.
@ -144,7 +136,6 @@ public class Format {
this.bitrate = bitrate;
this.language = language;
this.codecs = codecs;
this.bandwidth = bitrate / 8;
}
@Override