1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! Audio playout statistics.
//!
//! This module contains the [`RTCAudioPlayoutStats`] type which provides
//! information about audio playout devices.
use RTCStats;
use crateRtpCodecKind;
use ;
/// Statistics for audio playout.
///
/// This struct corresponds to the `RTCAudioPlayoutStats` dictionary in the
/// W3C WebRTC Statistics API. It provides information about audio playout
/// devices, including synthesized samples for concealment and playout delay.
///
/// # W3C Reference
///
/// See [RTCAudioPlayoutStats](https://www.w3.org/TR/webrtc-stats/#playoutstats-dict*)