Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RTCMediaStreamTrackStats.concealedAudibleSamples added. #215

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions webrtc-stats.html
Expand Up @@ -1419,6 +1419,7 @@ <h3>
unsigned long long totalSamplesSent;
unsigned long long totalSamplesReceived;
unsigned long long concealedSamples;
unsigned long long concealedAudibleSamples;
unsigned long long concealmentEvents;
};</pre>
<section>
Expand Down Expand Up @@ -1660,6 +1661,20 @@ <h2>
Only present for inbound audio tracks. The total number of inbound audio samples
that are concealed samples. A concealed sample is a sample that is based on data
that was synthesized to conceal packet loss and does not represent incoming data.
This includes <a>concealedAudibleSamples</a>.
</p>
</dd>
<dt>
<dfn><code>concealedAudibleSamples</code></dfn> of type <span class="idlMemberType">
<a>unsigned long long</a></span>
</dt>
<dd>
<p>
Only present for inbound audio tracks. The total number of concealed audio samples
(see <a>concealedSamples</a>) that was played out during an audible portions of the
stream. Audible means that the received audio is not considered background noise or
silence by the user agent. It is up to the implementation to determine what is
considered background noise.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add: The value is set to undefined for user-agents that do not implement this metric.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

</p>
</dd>
<dt>
Expand Down