summaryrefslogtreecommitdiff
path: root/chromium/media/capabilities/video_decode_stats.proto
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-01-29 16:35:13 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-02-01 15:33:35 +0000
commitc8c2d1901aec01e934adf561a9fdf0cc776cdef8 (patch)
tree9157c3d9815e5870799e070b113813bec53e0535 /chromium/media/capabilities/video_decode_stats.proto
parentabefd5095b41dac94ca451d784ab6e27372e981a (diff)
downloadqtwebengine-chromium-c8c2d1901aec01e934adf561a9fdf0cc776cdef8.tar.gz
BASELINE: Update Chromium to 64.0.3282.139
Change-Id: I1cae68fe9c94ff7608b26b8382fc19862cdb293a Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/media/capabilities/video_decode_stats.proto')
-rw-r--r--chromium/media/capabilities/video_decode_stats.proto21
1 files changed, 21 insertions, 0 deletions
diff --git a/chromium/media/capabilities/video_decode_stats.proto b/chromium/media/capabilities/video_decode_stats.proto
new file mode 100644
index 00000000000..a05104fc824
--- /dev/null
+++ b/chromium/media/capabilities/video_decode_stats.proto
@@ -0,0 +1,21 @@
+// 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];
+}