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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 class VoiceMediaChannel; | 53 class VoiceMediaChannel; |
54 class WebRtcDecoderObserver; | 54 class WebRtcDecoderObserver; |
55 class WebRtcEncoderObserver; | 55 class WebRtcEncoderObserver; |
56 class WebRtcLocalStreamInfo; | 56 class WebRtcLocalStreamInfo; |
57 class WebRtcRenderAdapter; | 57 class WebRtcRenderAdapter; |
58 class WebRtcVideoChannelRecvInfo; | 58 class WebRtcVideoChannelRecvInfo; |
59 class WebRtcVideoChannelSendInfo; | 59 class WebRtcVideoChannelSendInfo; |
60 class WebRtcVoiceEngine; | 60 class WebRtcVoiceEngine; |
61 class WebRtcVoiceMediaChannel; | 61 class WebRtcVoiceMediaChannel; |
62 | 62 |
| 63 struct CapturedFrame; |
63 struct Device; | 64 struct Device; |
64 | 65 |
65 // Exposed here for unittests. | 66 // Exposed here for unittests. |
66 std::vector<VideoCodec> DefaultVideoCodecList(); | 67 std::vector<VideoCodec> DefaultVideoCodecList(); |
67 | 68 |
68 class UnsignalledSsrcHandler { | 69 class UnsignalledSsrcHandler { |
69 public: | 70 public: |
70 enum Action { | 71 enum Action { |
71 kDropPacket, | 72 kDropPacket, |
72 kDeliverPacket, | 73 kDeliverPacket, |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 VideoSendParameters send_params_; | 565 VideoSendParameters send_params_; |
565 VideoOptions default_send_options_; | 566 VideoOptions default_send_options_; |
566 VideoRecvParameters recv_params_; | 567 VideoRecvParameters recv_params_; |
567 bool red_disabled_by_remote_side_; | 568 bool red_disabled_by_remote_side_; |
568 int64_t last_stats_log_ms_; | 569 int64_t last_stats_log_ms_; |
569 }; | 570 }; |
570 | 571 |
571 } // namespace cricket | 572 } // namespace cricket |
572 | 573 |
573 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ | 574 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ |
OLD | NEW |