OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 bool enable_fec, | 74 bool enable_fec, |
75 int payload_type_red, | 75 int payload_type_red, |
76 int payload_type_fec); | 76 int payload_type_fec); |
77 | 77 |
78 RtpState GetRtpStateForSsrc(uint32_t ssrc) const; | 78 RtpState GetRtpStateForSsrc(uint32_t ssrc) const; |
79 | 79 |
80 | 80 |
81 CallStatsObserver* GetStatsObserver(); | 81 CallStatsObserver* GetStatsObserver(); |
82 | 82 |
83 // Implements VCMReceiveCallback. | 83 // Implements VCMReceiveCallback. |
84 int32_t FrameToRender(VideoFrame& video_frame) override; // NOLINT | 84 virtual int32_t FrameToRender(VideoFrame& video_frame); // NOLINT |
85 | 85 |
86 // Implements VCMReceiveCallback. | 86 // Implements VCMReceiveCallback. |
87 int32_t ReceivedDecodedReferenceFrame(const uint64_t picture_id) override; | 87 virtual int32_t ReceivedDecodedReferenceFrame( |
| 88 const uint64_t picture_id); |
88 | 89 |
89 // Implements VCMReceiveCallback. | 90 // Implements VCMReceiveCallback. |
90 void OnIncomingPayloadType(int payload_type) override; | 91 void OnIncomingPayloadType(int payload_type) override; |
91 void OnDecoderImplementationName(const char* implementation_name) override; | 92 void OnDecoderImplementationName(const char* implementation_name) override; |
92 | 93 |
93 // Implements VCMReceiveStatisticsCallback. | 94 // Implements VCMReceiveStatisticsCallback. |
94 void OnReceiveRatesUpdated(uint32_t bit_rate, uint32_t frame_rate) override; | 95 void OnReceiveRatesUpdated(uint32_t bit_rate, uint32_t frame_rate) override; |
95 void OnDiscardedPacketsUpdated(int discarded_packets) override; | 96 void OnDiscardedPacketsUpdated(int discarded_packets) override; |
96 void OnFrameCountsUpdated(const FrameCounts& frame_counts) override; | 97 void OnFrameCountsUpdated(const FrameCounts& frame_counts) override; |
97 | 98 |
98 // Implements VCMDecoderTimingCallback. | 99 // Implements VCMDecoderTimingCallback. |
99 void OnDecoderTiming(int decode_ms, | 100 virtual void OnDecoderTiming(int decode_ms, |
100 int max_decode_ms, | 101 int max_decode_ms, |
101 int current_delay_ms, | 102 int current_delay_ms, |
102 int target_delay_ms, | 103 int target_delay_ms, |
103 int jitter_buffer_ms, | 104 int jitter_buffer_ms, |
104 int min_playout_delay_ms, | 105 int min_playout_delay_ms, |
105 int render_delay_ms) override; | 106 int render_delay_ms); |
106 | 107 |
107 // Implements FrameTypeCallback. | 108 // Implements FrameTypeCallback. |
108 int32_t RequestKeyFrame() override; | 109 virtual int32_t RequestKeyFrame(); |
109 | 110 |
110 // Implements FrameTypeCallback. | 111 // Implements FrameTypeCallback. |
111 int32_t SliceLossIndicationRequest( | 112 virtual int32_t SliceLossIndicationRequest( |
112 const uint64_t picture_id) override; | 113 const uint64_t picture_id); |
113 | 114 |
114 // Implements VideoPacketRequestCallback. | 115 // Implements VideoPacketRequestCallback. |
115 int32_t ResendPackets(const uint16_t* sequence_numbers, | 116 int32_t ResendPackets(const uint16_t* sequence_numbers, |
116 uint16_t length) override; | 117 uint16_t length) override; |
117 | 118 |
118 void RegisterPreRenderCallback(I420FrameCallback* pre_render_callback); | 119 void RegisterPreRenderCallback(I420FrameCallback* pre_render_callback); |
119 | 120 |
120 void RegisterRtcpPacketTypeCounterObserver( | 121 void RegisterRtcpPacketTypeCounterObserver( |
121 RtcpPacketTypeCounterObserver* observer); | 122 RtcpPacketTypeCounterObserver* observer); |
122 void RegisterReceiveStatisticsProxy( | 123 void RegisterReceiveStatisticsProxy( |
(...skipping 29 matching lines...) Expand all Loading... |
152 | 153 |
153 int max_nack_reordering_threshold_; | 154 int max_nack_reordering_threshold_; |
154 I420FrameCallback* pre_render_callback_ GUARDED_BY(crit_); | 155 I420FrameCallback* pre_render_callback_ GUARDED_BY(crit_); |
155 | 156 |
156 int64_t last_rtt_ms_ GUARDED_BY(crit_); | 157 int64_t last_rtt_ms_ GUARDED_BY(crit_); |
157 }; | 158 }; |
158 | 159 |
159 } // namespace webrtc | 160 } // namespace webrtc |
160 | 161 |
161 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ | 162 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ |
OLD | NEW |