Change field to bitrate for bandwidth update
This commit is contained in:
parent
d5168af211
commit
d148c3f9f9
@ -125,7 +125,7 @@ class VideoEventEmitter {
|
|||||||
|
|
||||||
private static final String EVENT_PROP_TIMED_METADATA = "metadata";
|
private static final String EVENT_PROP_TIMED_METADATA = "metadata";
|
||||||
|
|
||||||
private static final String EVENT_PROP_BITRATE_ESTIMATE = "bitrateEstimate";
|
private static final String EVENT_PROP_BITRATE = "bitrate";
|
||||||
|
|
||||||
|
|
||||||
void setViewId(int viewId) {
|
void setViewId(int viewId) {
|
||||||
@ -178,7 +178,7 @@ class VideoEventEmitter {
|
|||||||
|
|
||||||
void bandwidthReport(double bitRateEstimate) {
|
void bandwidthReport(double bitRateEstimate) {
|
||||||
WritableMap event = Arguments.createMap();
|
WritableMap event = Arguments.createMap();
|
||||||
event.putDouble(EVENT_PROP_BITRATE_ESTIMATE, bitRateEstimate / 1024D);
|
event.putDouble(EVENT_PROP_BITRATE, bitRate);
|
||||||
receiveEvent(EVENT_BANDWIDTH, event);
|
receiveEvent(EVENT_BANDWIDTH, event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user