Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 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 |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 788 // Framerate as sent to the renderer. | 788 // Framerate as sent to the renderer. |
| 789 int framerate_render_input; | 789 int framerate_render_input; |
| 790 // Framerate that the renderer reports. | 790 // Framerate that the renderer reports. |
| 791 int framerate_render_output; | 791 int framerate_render_output; |
| 792 uint32_t frames_received; | 792 uint32_t frames_received; |
| 793 uint32_t frames_decoded; | 793 uint32_t frames_decoded; |
| 794 uint32_t frames_rendered; | 794 uint32_t frames_rendered; |
| 795 rtc::Optional<uint64_t> qp_sum; | 795 rtc::Optional<uint64_t> qp_sum; |
| 796 int64_t interframe_delay_max_ms; | 796 int64_t interframe_delay_max_ms; |
| 797 | 797 |
| 798 // "screen" vs "realtime". | |
| 799 std::string content_type; | |
|
tommi
2017/08/30 15:03:27
same concern here as in the other header
ilnik
2017/08/30 15:30:24
See the answer in the other header.
| |
| 800 | |
| 798 // All stats below are gathered per-VideoReceiver, but some will be correlated | 801 // All stats below are gathered per-VideoReceiver, but some will be correlated |
| 799 // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC | 802 // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC |
| 800 // structures, reflect this in the new layout. | 803 // structures, reflect this in the new layout. |
| 801 | 804 |
| 802 // Current frame decode latency. | 805 // Current frame decode latency. |
| 803 int decode_ms; | 806 int decode_ms; |
| 804 // Maximum observed frame decode latency. | 807 // Maximum observed frame decode latency. |
| 805 int max_decode_ms; | 808 int max_decode_ms; |
| 806 // Jitter (network-related) latency. | 809 // Jitter (network-related) latency. |
| 807 int jitter_buffer_ms; | 810 int jitter_buffer_ms; |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1234 const char*, | 1237 const char*, |
| 1235 size_t> SignalDataReceived; | 1238 size_t> SignalDataReceived; |
| 1236 // Signal when the media channel is ready to send the stream. Arguments are: | 1239 // Signal when the media channel is ready to send the stream. Arguments are: |
| 1237 // writable(bool) | 1240 // writable(bool) |
| 1238 sigslot::signal1<bool> SignalReadyToSend; | 1241 sigslot::signal1<bool> SignalReadyToSend; |
| 1239 }; | 1242 }; |
| 1240 | 1243 |
| 1241 } // namespace cricket | 1244 } // namespace cricket |
| 1242 | 1245 |
| 1243 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ | 1246 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ |
| OLD | NEW |