| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 rtc::VideoSinkInterface<VideoFrame>* sink) override; | 165 rtc::VideoSinkInterface<VideoFrame>* sink) override; |
| 166 bool GetStats(VideoMediaInfo* info) override; | 166 bool GetStats(VideoMediaInfo* info) override; |
| 167 | 167 |
| 168 void OnPacketReceived(rtc::CopyOnWriteBuffer* packet, | 168 void OnPacketReceived(rtc::CopyOnWriteBuffer* packet, |
| 169 const rtc::PacketTime& packet_time) override; | 169 const rtc::PacketTime& packet_time) override; |
| 170 void OnRtcpReceived(rtc::CopyOnWriteBuffer* packet, | 170 void OnRtcpReceived(rtc::CopyOnWriteBuffer* packet, |
| 171 const rtc::PacketTime& packet_time) override; | 171 const rtc::PacketTime& packet_time) override; |
| 172 void OnReadyToSend(bool ready) override; | 172 void OnReadyToSend(bool ready) override; |
| 173 void OnNetworkRouteChanged(const std::string& transport_name, | 173 void OnNetworkRouteChanged(const std::string& transport_name, |
| 174 const rtc::NetworkRoute& network_route) override; | 174 const rtc::NetworkRoute& network_route) override; |
| 175 void OnTransportOverheadChanged(int transport_overhead_per_packet) override; |
| 175 void SetInterface(NetworkInterface* iface) override; | 176 void SetInterface(NetworkInterface* iface) override; |
| 176 | 177 |
| 177 // Implemented for VideoMediaChannelTest. | 178 // Implemented for VideoMediaChannelTest. |
| 178 bool sending() const { return sending_; } | 179 bool sending() const { return sending_; } |
| 179 | 180 |
| 180 // AdaptReason is used for expressing why a WebRtcVideoSendStream request | 181 // AdaptReason is used for expressing why a WebRtcVideoSendStream request |
| 181 // a lower input frame size than the currently configured camera input frame | 182 // a lower input frame size than the currently configured camera input frame |
| 182 // size. There can be more than one reason OR:ed together. | 183 // size. There can be more than one reason OR:ed together. |
| 183 enum AdaptReason { | 184 enum AdaptReason { |
| 184 ADAPTREASON_NONE = 0, | 185 ADAPTREASON_NONE = 0, |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 VideoSendParameters send_params_; | 521 VideoSendParameters send_params_; |
| 521 VideoOptions default_send_options_; | 522 VideoOptions default_send_options_; |
| 522 VideoRecvParameters recv_params_; | 523 VideoRecvParameters recv_params_; |
| 523 bool red_disabled_by_remote_side_; | 524 bool red_disabled_by_remote_side_; |
| 524 int64_t last_stats_log_ms_; | 525 int64_t last_stats_log_ms_; |
| 525 }; | 526 }; |
| 526 | 527 |
| 527 } // namespace cricket | 528 } // namespace cricket |
| 528 | 529 |
| 529 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ | 530 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ |
| OLD | NEW |