Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 1.04 KB

File metadata and controls

55 lines (35 loc) · 1.04 KB
title AudioPlaybackStats: resetLatency() method
short-title resetLatency()
slug Web/API/AudioPlaybackStats/resetLatency
page-type web-api-instance-method
status
experimental
browser-compat api.AudioPlaybackStats.resetLatency

{{APIRef("Web Audio API")}}{{SeeCompatTable}}

The resetLatency() method of the {{domxref("AudioPlaybackStats")}} interface resets the start of the interval during which latency statistics are measured to the {{domxref("BaseAudioContext.currentTime")}}.

Syntax

resetLatency()

Parameters

None.

Return value

None ({{jsxref("undefined")}}).

Examples

Basic usage

const audioCtx = new AudioContext();
const stats = audioCtx.playbackStats;

// ...

// Reset the latency measurement to the current time
stats.resetLatency();

See also the main {{domxref("AudioPlaybackStats")}} reference page for a more in-depth example.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also