OLD | NEW |
---|---|
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 feedback signal that indicates the fraction of the tolerable maximum |
40 // GetInteger()/SetInteger() and VideoFrame::ColorSpace enumeration. | 44 // amount of resources that were utilized to process this frame. A producer |
41 COLOR_SPACE, | 45 // can check this value after-the-fact, usually via a VideoFrame destruction |
46 // observer, to determine whether the consumer can handle more or less data | |
47 // volume, and achieve the right quality versus performance trade-off. | |
48 // | |
49 // Use Get/SetDouble() for this key. Values are interpreted as follows: | |
50 // Less than 0.0 is meaningless and should be ignored. 1.0 indicates a | |
51 // maximum sustainable utilization. Greater than 1.0 indicates the consumer | |
52 // is likely to stall or drop frames if the data volume is not reduced | |
53 // immediately. | |
hubbe
2015/06/04 22:08:53
I would remove the word "immediately" here.
miu
2015/06/06 00:29:22
Done.
| |
54 // | |
55 // Example: In a system that encodes and transmits video frames over the | |
56 // network, this value can be used to indicate whether sufficient CPU | |
57 // is available for encoding and/or sufficient bandwidth is available for | |
58 // transmission over the network. The maximum of the two utilization | |
59 // measurements would be used as feedback. | |
60 RESOURCE_UTILIZATION, | |
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 Loading... | |
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_ |
OLD | NEW |