OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_VIDEO_SEND_STREAM_H_ | 11 #ifndef WEBRTC_VIDEO_SEND_STREAM_H_ |
12 #define WEBRTC_VIDEO_SEND_STREAM_H_ | 12 #define WEBRTC_VIDEO_SEND_STREAM_H_ |
13 | 13 |
14 #include <map> | 14 #include <map> |
15 #include <string> | 15 #include <string> |
16 #include <vector> | 16 #include <vector> |
| 17 #include <utility> |
17 | 18 |
18 #include "webrtc/common_types.h" | 19 #include "webrtc/common_types.h" |
19 #include "webrtc/common_video/include/frame_callback.h" | 20 #include "webrtc/common_video/include/frame_callback.h" |
20 #include "webrtc/config.h" | 21 #include "webrtc/config.h" |
21 #include "webrtc/media/base/videosinkinterface.h" | 22 #include "webrtc/media/base/videosinkinterface.h" |
22 #include "webrtc/media/base/videosourceinterface.h" | 23 #include "webrtc/media/base/videosourceinterface.h" |
23 #include "webrtc/transport.h" | 24 #include "webrtc/transport.h" |
24 | 25 |
25 namespace webrtc { | 26 namespace webrtc { |
26 | 27 |
(...skipping 19 matching lines...) Expand all Loading... |
46 RtcpStatistics rtcp_stats; | 47 RtcpStatistics rtcp_stats; |
47 }; | 48 }; |
48 | 49 |
49 struct Stats { | 50 struct Stats { |
50 std::string ToString(int64_t time_ms) const; | 51 std::string ToString(int64_t time_ms) const; |
51 std::string encoder_implementation_name = "unknown"; | 52 std::string encoder_implementation_name = "unknown"; |
52 int input_frame_rate = 0; | 53 int input_frame_rate = 0; |
53 int encode_frame_rate = 0; | 54 int encode_frame_rate = 0; |
54 int avg_encode_time_ms = 0; | 55 int avg_encode_time_ms = 0; |
55 int encode_usage_percent = 0; | 56 int encode_usage_percent = 0; |
| 57 // Bitrate the encoder is currently configured to use due to bandwidth |
| 58 // limitations. |
56 int target_media_bitrate_bps = 0; | 59 int target_media_bitrate_bps = 0; |
| 60 // Bitrate the encoder is actually producing. |
57 int media_bitrate_bps = 0; | 61 int media_bitrate_bps = 0; |
| 62 // Media bitrate this VideoSendStream is configured to prefer if there are |
| 63 // no bandwidth limitations. |
| 64 int preffered_media_bitrate_bps = 0; |
58 bool suspended = false; | 65 bool suspended = false; |
59 bool bw_limited_resolution = false; | 66 bool bw_limited_resolution = false; |
60 std::map<uint32_t, StreamStats> substreams; | 67 std::map<uint32_t, StreamStats> substreams; |
61 }; | 68 }; |
62 | 69 |
63 struct Config { | 70 struct Config { |
64 public: | 71 public: |
65 Config() = delete; | 72 Config() = delete; |
66 Config(Config&&) = default; | 73 Config(Config&&) = default; |
67 explicit Config(Transport* send_transport) | 74 explicit Config(Transport* send_transport) |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 | 199 |
193 virtual Stats GetStats() = 0; | 200 virtual Stats GetStats() = 0; |
194 | 201 |
195 protected: | 202 protected: |
196 virtual ~VideoSendStream() {} | 203 virtual ~VideoSendStream() {} |
197 }; | 204 }; |
198 | 205 |
199 } // namespace webrtc | 206 } // namespace webrtc |
200 | 207 |
201 #endif // WEBRTC_VIDEO_SEND_STREAM_H_ | 208 #endif // WEBRTC_VIDEO_SEND_STREAM_H_ |
OLD | NEW |