Skip to content

Commit

Permalink
Some log functions removed
Browse files Browse the repository at this point in the history
Some log functions removed
  • Loading branch information
sridhardvvce committed Nov 1, 2018
1 parent 41cbf07 commit 9dead2f
Showing 1 changed file with 1 addition and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class ReactExoplayerView extends FrameLayout implements

private static final String TAG = "ReactExoplayerView";

private static DefaultBandwidthMeter BANDWIDTH_METER; // = new DefaultBandwidthMeter();
private static DefaultBandwidthMeter BANDWIDTH_METER;
private static final CookieManager DEFAULT_COOKIE_MANAGER;
private static final int SHOW_PROGRESS = 1;
private static final int REPORT_BANDWIDTH = 1;
Expand Down Expand Up @@ -269,19 +269,8 @@ private void buildBandwidthMeter() {
BANDWIDTH_METER = new DefaultBandwidthMeter(new Handler(), new BandwidthMeter.EventListener() {
@Override
public void onBandwidthSample(int elapsedMs, long bytes, long bitrate) {
String bw = humanReadableByteCount(bitrate, true, true);
System.out.println("Debug::::In function onBandwidthSample, elapsedMs = " + elapsedMs + " bytes = " + bytes + " bitrate = " + bitrate);
}

public String humanReadableByteCount(long bytes, boolean si, boolean isBits) {
int unit = !si ? 1000 : 1024;
if (bytes < unit)
return bytes + " KB";
int exp = (int) (Math.log(bytes) / Math.log(unit));
String pre = (si ? "kMGTPE" : "KMGTPE").charAt(exp - 1)
+ (si ? "" : "i");
return isBits ? String.format("%.1f %sb", bytes / Math.pow(unit, exp), pre) : String.format("%.1f %sB", bytes / Math.pow(unit, exp), pre);
}
});
}

Expand Down

0 comments on commit 9dead2f

Please sign in to comment.