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; | |
785 | 784 |
786 // All stats below are gathered per-VideoReceiver, but some will be correlated | 785 // All stats below are gathered per-VideoReceiver, but some will be correlated |
787 // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC | 786 // across MediaStreamTracks. NOTE(hta): when sinking stats into per-SSRC |
788 // structures, reflect this in the new layout. | 787 // structures, reflect this in the new layout. |
789 | 788 |
790 // Current frame decode latency. | 789 // Current frame decode latency. |
791 int decode_ms; | 790 int decode_ms; |
792 // Maximum observed frame decode latency. | 791 // Maximum observed frame decode latency. |
793 int max_decode_ms; | 792 int max_decode_ms; |
794 // Jitter (network-related) latency. | 793 // Jitter (network-related) latency. |
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1201 const char*, | 1200 const char*, |
1202 size_t> SignalDataReceived; | 1201 size_t> SignalDataReceived; |
1203 // Signal when the media channel is ready to send the stream. Arguments are: | 1202 // Signal when the media channel is ready to send the stream. Arguments are: |
1204 // writable(bool) | 1203 // writable(bool) |
1205 sigslot::signal1<bool> SignalReadyToSend; | 1204 sigslot::signal1<bool> SignalReadyToSend; |
1206 }; | 1205 }; |
1207 | 1206 |
1208 } // namespace cricket | 1207 } // namespace cricket |
1209 | 1208 |
1210 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ | 1209 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ |
OLD | NEW |