blob: a05104fc8246d0199c0aa8bc9f5c13262ce07d83 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package media;
// Proto representation of VideoDecodeStatsDB::DecodeStatsEntry. The values are
// associated with a distinct VideoDecodeStatsDB::VideoDescKey.
message DecodeStatsProto {
// Required. Count of decoded video frames.
optional uint64 frames_decoded = 1;
// Required. Count of dropped video frames. Should not exceed
// |frames_decoded|.
optional uint64 frames_dropped = 2;
// Required. Count of power efficiently decoded frames.
optional uint64 frames_decoded_power_efficient = 3 [default = 0];
}