Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: media/base/video_frame_metadata.h

Issue 1157193002: RESOURCE_UTILIZATION in VideoFrameMetadata, a consumer feedback signal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@video_frame_done_callback
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_BASE_VIDEO_FRAME_METADATA_H_ 5 #ifndef MEDIA_BASE_VIDEO_FRAME_METADATA_H_
6 #define MEDIA_BASE_VIDEO_FRAME_METADATA_H_ 6 #define MEDIA_BASE_VIDEO_FRAME_METADATA_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "base/values.h" 10 #include "base/values.h"
11 #include "media/base/media_export.h" 11 #include "media/base/media_export.h"
12 12
13 namespace media { 13 namespace media {
14 14
15 class MEDIA_EXPORT VideoFrameMetadata { 15 class MEDIA_EXPORT VideoFrameMetadata {
16 public: 16 public:
17 enum Key { 17 enum Key {
18 // Video capture begin/end timestamps. Consumers can use these values for 18 // Video capture begin/end timestamps. Consumers can use these values for
19 // dynamic optimizations, logging stats, etc. Use Get/SetTimeTicks() for 19 // dynamic optimizations, logging stats, etc. Use Get/SetTimeTicks() for
20 // these keys. 20 // these keys.
21 CAPTURE_BEGIN_TIME, 21 CAPTURE_BEGIN_TIME,
22 CAPTURE_END_TIME, 22 CAPTURE_END_TIME,
23 23
24 // Some VideoFrames have an indication of the color space used. Use
25 // GetInteger()/SetInteger() and VideoFrame::ColorSpace enumeration.
26 COLOR_SPACE,
27
24 // The estimated duration of this frame (i.e., the amount of time between 28 // The estimated duration of this frame (i.e., the amount of time between
25 // the media timestamp of this frame and the next). Note that this is not 29 // the media timestamp of this frame and the next). Note that this is not
26 // the same information provided by FRAME_RATE as the FRAME_DURATION can 30 // the same information provided by FRAME_RATE as the FRAME_DURATION can
27 // vary unpredictably for every frame. Consumers can use this to optimize 31 // vary unpredictably for every frame. Consumers can use this to optimize
28 // playback scheduling, make encoding quality decisions, and/or compute 32 // playback scheduling, make encoding quality decisions, and/or compute
29 // frame-level resource utilization stats. Use Get/SetTimeDelta() for this 33 // frame-level resource utilization stats. Use Get/SetTimeDelta() for this
30 // key. 34 // key.
31 FRAME_DURATION, 35 FRAME_DURATION,
32 36
33 // Represents either the fixed frame rate, or the maximum frame rate to 37 // Represents either the fixed frame rate, or the maximum frame rate to
34 // expect from a variable-rate source. This value generally remains the 38 // expect from a variable-rate source. This value generally remains the
35 // same for all frames in the same session. Use Get/SetDouble() for this 39 // same for all frames in the same session. Use Get/SetDouble() for this
36 // key. 40 // key.
37 FRAME_RATE, 41 FRAME_RATE,
38 42
39 // Some VideoFrames have an indication of the color space used. Use 43 // A measure of stress, usually related to resource bottlenecks, being
40 // GetInteger()/SetInteger() and VideoFrame::ColorSpace enumeration. 44 // experienced by the consumers of the video frame. A producer can check
41 COLOR_SPACE, 45 // this value after-the-fact, usually via a VideoFrame done callback, to
46 // determine whether the consumer can handle more/less data volume. In all,
47 // this is a feedback mechanism used to achieve the right quality versus
48 // performance trade-off.
49 //
50 // Use Get/SetDouble() for this key. Values are interpreted as follows:
51 // Less than 0.0 is meaningless and should be ignored. 0.0 indicates zero
52 // stress. 1.0 indicates a maximum sustainable stress level. Greater than
53 // 1.0 indicates the processing pipeline is likely to stall or drop frames
54 // if the data volume is not reduced immediately.
55 //
56 // Example: In a system that encodes and transmits video frames over the
57 // network, the stress level can be used to indicate whether sufficient CPU
58 // is available for encoding and/or sufficient bandwidth is available for
59 // transmission over the network.
60 STRESS_LEVEL,
hubbe 2015/06/02 00:23:22 I don't particularly like this name. How about RES
miu 2015/06/02 03:07:34 Done. This is actually what I had in my working p
42 61
43 NUM_KEYS 62 NUM_KEYS
44 }; 63 };
45 64
46 VideoFrameMetadata(); 65 VideoFrameMetadata();
47 ~VideoFrameMetadata(); 66 ~VideoFrameMetadata();
48 67
49 bool HasKey(Key key) const; 68 bool HasKey(Key key) const;
50 69
51 void Clear() { dictionary_.Clear(); } 70 void Clear() { dictionary_.Clear(); }
(...skipping 26 matching lines...) Expand all
78 const base::BinaryValue* GetBinaryValue(Key key) const; 97 const base::BinaryValue* GetBinaryValue(Key key) const;
79 98
80 base::DictionaryValue dictionary_; 99 base::DictionaryValue dictionary_;
81 100
82 DISALLOW_COPY_AND_ASSIGN(VideoFrameMetadata); 101 DISALLOW_COPY_AND_ASSIGN(VideoFrameMetadata);
83 }; 102 };
84 103
85 } // namespace media 104 } // namespace media
86 105
87 #endif // MEDIA_BASE_VIDEO_FRAME_METADATA_H_ 106 #endif // MEDIA_BASE_VIDEO_FRAME_METADATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698