chromium/third_party/blink/renderer/modules/mediastream/media_stream_track_video_stats.idl

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

[
    Exposed=Window
] interface MediaStreamTrackVideoStats {
    [CallWith=ScriptState] readonly attribute unsigned long long deliveredFrames;
    [CallWith=ScriptState] readonly attribute unsigned long long discardedFrames;
    [CallWith=ScriptState] readonly attribute unsigned long long totalFrames;
    [CallWith=ScriptState] object toJSON();
};