Remove buffer progress event

This commit is contained in:
Armands Malejevs
2022-06-08 11:29:09 +03:00
parent e90ab21c91
commit 8a057c553b
5 changed files with 0 additions and 60 deletions

View File

@@ -239,12 +239,6 @@ export default class Video extends Component {
}
};
_onBufferProgress = (event) => {
if (this.props.onBufferProgress) {
this.props.onBufferProgress(event.nativeEvent);
}
};
_onGetLicense = (event) => {
if (this.props.drm && this.props.drm.getLicense instanceof Function) {
const data = event.nativeEvent;
@@ -326,7 +320,6 @@ export default class Video extends Component {
onVideoSeek: this._onSeek,
onVideoEnd: this._onEnd,
onVideoBuffer: this._onBuffer,
onVideoBufferProgress: this._onBufferProgress,
onVideoBandwidthUpdate: this._onBandwidthUpdate,
onTimedMetadata: this._onTimedMetadata,
onVideoAudioBecomingNoisy: this._onAudioBecomingNoisy,