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 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 int framerate_rcvd; | 774 int framerate_rcvd; |
775 int framerate_decoded; | 775 int framerate_decoded; |
776 int framerate_output; | 776 int framerate_output; |
777 // Framerate as sent to the renderer. | 777 // Framerate as sent to the renderer. |
778 int framerate_render_input; | 778 int framerate_render_input; |
779 // Framerate that the renderer reports. | 779 // Framerate that the renderer reports. |
780 int framerate_render_output; | 780 int framerate_render_output; |
781 uint32_t frames_received; | 781 uint32_t frames_received; |
782 uint32_t frames_decoded; | 782 uint32_t frames_decoded; |
783 uint32_t frames_rendered; | 783 uint32_t frames_rendered; |
| 784 rtc::Optional<uint64_t> qp_sum; |
784 | 785 |
785 // All stats below are gathered per-VideoReceiver, but some will be correlated | 786 // All stats below are gathered per-VideoReceiver, but some will be correlated |
786 // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC | 787 // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC |
787 // structures, reflect this in the new layout. | 788 // structures, reflect this in the new layout. |
788 | 789 |
789 // Current frame decode latency. | 790 // Current frame decode latency. |
790 int decode_ms; | 791 int decode_ms; |
791 // Maximum observed frame decode latency. | 792 // Maximum observed frame decode latency. |
792 int max_decode_ms; | 793 int max_decode_ms; |
793 // Jitter (network-related) latency. | 794 // Jitter (network-related) latency. |
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1200 const char*, | 1201 const char*, |
1201 size_t> SignalDataReceived; | 1202 size_t> SignalDataReceived; |
1202 // Signal when the media channel is ready to send the stream. Arguments are: | 1203 // Signal when the media channel is ready to send the stream. Arguments are: |
1203 // writable(bool) | 1204 // writable(bool) |
1204 sigslot::signal1<bool> SignalReadyToSend; | 1205 sigslot::signal1<bool> SignalReadyToSend; |
1205 }; | 1206 }; |
1206 | 1207 |
1207 } // namespace cricket | 1208 } // namespace cricket |
1208 | 1209 |
1209 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ | 1210 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ |
OLD | NEW |