mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
mflodman@webrtc.org | 5e0cbcf | 2013-12-18 09:46:22 | [diff] [blame] | 10 | #ifndef WEBRTC_CALL_H_ |
| 11 | #define WEBRTC_CALL_H_ |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 12 | |
| 13 | #include <string> |
| 14 | #include <vector> |
| 15 | |
| 16 | #include "webrtc/common_types.h" |
pbos@webrtc.org | 24e2089 | 2013-10-28 16:32:01 | [diff] [blame] | 17 | #include "webrtc/video_receive_stream.h" |
| 18 | #include "webrtc/video_send_stream.h" |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 19 | |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 20 | namespace webrtc { |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 21 | |
| 22 | class VoiceEngine; |
| 23 | |
| 24 | const char* Version(); |
| 25 | |
| 26 | class PacketReceiver { |
| 27 | public: |
pbos@webrtc.org | bc57e0f | 2014-05-14 13:57:12 | [diff] [blame] | 28 | enum DeliveryStatus { |
| 29 | DELIVERY_OK, |
| 30 | DELIVERY_UNKNOWN_SSRC, |
| 31 | DELIVERY_PACKET_ERROR, |
| 32 | }; |
| 33 | |
| 34 | virtual DeliveryStatus DeliverPacket(const uint8_t* packet, |
| 35 | size_t length) = 0; |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 36 | |
| 37 | protected: |
| 38 | virtual ~PacketReceiver() {} |
| 39 | }; |
| 40 | |
asapersson@webrtc.org | 8ef6548 | 2014-01-31 10:05:07 | [diff] [blame] | 41 | // Callback interface for reporting when a system overuse is detected. |
pbos@webrtc.org | d3e3c9b | 2014-10-03 11:25:45 | [diff] [blame^] | 42 | class LoadObserver { |
asapersson@webrtc.org | 8ef6548 | 2014-01-31 10:05:07 | [diff] [blame] | 43 | public: |
pbos@webrtc.org | d3e3c9b | 2014-10-03 11:25:45 | [diff] [blame^] | 44 | enum Load { kOveruse, kUnderuse }; |
| 45 | |
| 46 | // Triggered when overuse is detected or when we believe the system can take |
| 47 | // more load. |
| 48 | virtual void OnLoadUpdate(Load load) = 0; |
asapersson@webrtc.org | 8ef6548 | 2014-01-31 10:05:07 | [diff] [blame] | 49 | |
| 50 | protected: |
pbos@webrtc.org | d3e3c9b | 2014-10-03 11:25:45 | [diff] [blame^] | 51 | virtual ~LoadObserver() {} |
asapersson@webrtc.org | 8ef6548 | 2014-01-31 10:05:07 | [diff] [blame] | 52 | }; |
| 53 | |
pbos@webrtc.org | bf6d572 | 2013-09-09 15:04:25 | [diff] [blame] | 54 | // A Call instance can contain several send and/or receive streams. All streams |
| 55 | // are assumed to have the same remote endpoint and will share bitrate estimates |
| 56 | // etc. |
| 57 | class Call { |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 58 | public: |
pbos@webrtc.org | 9b707ca | 2014-09-03 16:17:12 | [diff] [blame] | 59 | enum NetworkState { |
| 60 | kNetworkUp, |
| 61 | kNetworkDown, |
| 62 | }; |
mflodman@webrtc.org | bf76ae2 | 2013-07-23 11:35:00 | [diff] [blame] | 63 | struct Config { |
pbos@webrtc.org | c179706 | 2013-08-23 09:19:30 | [diff] [blame] | 64 | explicit Config(newapi::Transport* send_transport) |
stefan@webrtc.org | 47f0c41 | 2013-12-04 10:24:26 | [diff] [blame] | 65 | : webrtc_config(NULL), |
| 66 | send_transport(send_transport), |
pbos@webrtc.org | c2014fd | 2013-08-14 13:52:52 | [diff] [blame] | 67 | voice_engine(NULL), |
mflodman@webrtc.org | f89ce46 | 2014-06-16 08:57:39 | [diff] [blame] | 68 | overuse_callback(NULL), |
| 69 | start_bitrate_bps(-1) {} |
mflodman@webrtc.org | bf76ae2 | 2013-07-23 11:35:00 | [diff] [blame] | 70 | |
stefan@webrtc.org | 47f0c41 | 2013-12-04 10:24:26 | [diff] [blame] | 71 | webrtc::Config* webrtc_config; |
| 72 | |
pbos@webrtc.org | c179706 | 2013-08-23 09:19:30 | [diff] [blame] | 73 | newapi::Transport* send_transport; |
pbos@webrtc.org | c2014fd | 2013-08-14 13:52:52 | [diff] [blame] | 74 | |
pbos@webrtc.org | bf6d572 | 2013-09-09 15:04:25 | [diff] [blame] | 75 | // VoiceEngine used for audio/video synchronization for this Call. |
pbos@webrtc.org | c2014fd | 2013-08-14 13:52:52 | [diff] [blame] | 76 | VoiceEngine* voice_engine; |
| 77 | |
asapersson@webrtc.org | 8ef6548 | 2014-01-31 10:05:07 | [diff] [blame] | 78 | // Callback for overuse and normal usage based on the jitter of incoming |
| 79 | // captured frames. 'NULL' disables the callback. |
pbos@webrtc.org | d3e3c9b | 2014-10-03 11:25:45 | [diff] [blame^] | 80 | LoadObserver* overuse_callback; |
mflodman@webrtc.org | f89ce46 | 2014-06-16 08:57:39 | [diff] [blame] | 81 | |
| 82 | // Start bitrate used before a valid bitrate estimate is calculated. '-1' |
| 83 | // lets the call decide start bitrate. |
| 84 | // Note: This currently only affects video. |
| 85 | int start_bitrate_bps; |
mflodman@webrtc.org | bf76ae2 | 2013-07-23 11:35:00 | [diff] [blame] | 86 | }; |
| 87 | |
pbos@webrtc.org | bf6d572 | 2013-09-09 15:04:25 | [diff] [blame] | 88 | static Call* Create(const Call::Config& config); |
pbos@webrtc.org | c2014fd | 2013-08-14 13:52:52 | [diff] [blame] | 89 | |
stefan@webrtc.org | 47f0c41 | 2013-12-04 10:24:26 | [diff] [blame] | 90 | static Call* Create(const Call::Config& config, |
| 91 | const webrtc::Config& webrtc_config); |
| 92 | |
pbos@webrtc.org | 964d78e | 2013-11-20 10:40:25 | [diff] [blame] | 93 | virtual VideoSendStream* CreateVideoSendStream( |
pbos@webrtc.org | bdfcddf | 2014-06-06 10:49:19 | [diff] [blame] | 94 | const VideoSendStream::Config& config, |
pbos@webrtc.org | 58b5140 | 2014-09-19 12:30:25 | [diff] [blame] | 95 | const VideoEncoderConfig& encoder_config) = 0; |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 96 | |
pbos@webrtc.org | 12a93e0 | 2013-11-21 13:49:43 | [diff] [blame] | 97 | virtual void DestroyVideoSendStream(VideoSendStream* send_stream) = 0; |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 98 | |
pbos@webrtc.org | 964d78e | 2013-11-20 10:40:25 | [diff] [blame] | 99 | virtual VideoReceiveStream* CreateVideoReceiveStream( |
pbos@webrtc.org | 6f1c3ef | 2013-06-05 11:33:21 | [diff] [blame] | 100 | const VideoReceiveStream::Config& config) = 0; |
pbos@webrtc.org | 12a93e0 | 2013-11-21 13:49:43 | [diff] [blame] | 101 | virtual void DestroyVideoReceiveStream( |
| 102 | VideoReceiveStream* receive_stream) = 0; |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 103 | |
| 104 | // All received RTP and RTCP packets for the call should be inserted to this |
| 105 | // PacketReceiver. The PacketReceiver pointer is valid as long as the |
pbos@webrtc.org | bf6d572 | 2013-09-09 15:04:25 | [diff] [blame] | 106 | // Call instance exists. |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 107 | virtual PacketReceiver* Receiver() = 0; |
| 108 | |
| 109 | // Returns the estimated total send bandwidth. Note: this can differ from the |
| 110 | // actual encoded bitrate. |
| 111 | virtual uint32_t SendBitrateEstimate() = 0; |
| 112 | |
| 113 | // Returns the total estimated receive bandwidth for the call. Note: this can |
| 114 | // differ from the actual receive bitrate. |
| 115 | virtual uint32_t ReceiveBitrateEstimate() = 0; |
| 116 | |
pbos@webrtc.org | 9b707ca | 2014-09-03 16:17:12 | [diff] [blame] | 117 | virtual void SignalNetworkState(NetworkState state) = 0; |
| 118 | |
pbos@webrtc.org | bf6d572 | 2013-09-09 15:04:25 | [diff] [blame] | 119 | virtual ~Call() {} |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 120 | }; |
mflodman@webrtc.org | 06e8026 | 2013-04-18 12:02:52 | [diff] [blame] | 121 | } // namespace webrtc |
| 122 | |
mflodman@webrtc.org | 5e0cbcf | 2013-12-18 09:46:22 | [diff] [blame] | 123 | #endif // WEBRTC_CALL_H_ |