blob: 3d042a1f19ac0663c054c599c4d2fa7d257f3aed [file] [log] [blame]
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +00001/*
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 */
10
11#ifndef WEBRTC_VIDEO_ENGINE_NEW_INCLUDE_VIDEO_ENGINE_H_
12#define WEBRTC_VIDEO_ENGINE_NEW_INCLUDE_VIDEO_ENGINE_H_
13
14#include <string>
15#include <vector>
16
17#include "webrtc/common_types.h"
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000018#include "webrtc/video_engine/new_include/video_receive_stream.h"
19#include "webrtc/video_engine/new_include/video_send_stream.h"
20
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000021namespace webrtc {
22namespace newapi {
23
24class VoiceEngine;
25
26const char* Version();
27
28class PacketReceiver {
29 public:
30 virtual bool DeliverPacket(const void* packet, size_t length) = 0;
31
32 protected:
33 virtual ~PacketReceiver() {}
34};
35
36struct VideoEngineConfig {
37 VideoEngineConfig()
38 : voice_engine(NULL), trace_callback(NULL), trace_filter(kTraceNone) {}
39
40 // VoiceEngine used for audio/video synchronization for this VideoEngine.
41 VoiceEngine* voice_engine;
42
43 TraceCallback* trace_callback;
44 uint32_t trace_filter;
45};
46
47// A VideoCall instance can contain several send and/or receive streams. All
48// streams are assumed to have the same remote endpoint and will share bitrate
49// estimates etc.
50class VideoCall {
51 public:
pbos@webrtc.org29d58392013-05-16 12:08:03 +000052 virtual std::vector<VideoCodec> GetVideoCodecs() = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000053
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000054 virtual VideoSendStream::Config GetDefaultSendConfig() = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000055
56 virtual VideoSendStream* CreateSendStream(
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000057 const VideoSendStream::Config& config) = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000058
59 // Returns the internal state of the send stream, for resume sending with a
60 // new stream with different settings.
61 // Note: Only the last returned send-stream state is valid.
62 virtual SendStreamState* DestroySendStream(VideoSendStream* send_stream) = 0;
63
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000064 virtual VideoReceiveStream::Config GetDefaultReceiveConfig() = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000065
66 virtual VideoReceiveStream* CreateReceiveStream(
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000067 const VideoReceiveStream::Config& config) = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000068 virtual void DestroyReceiveStream(VideoReceiveStream* receive_stream) = 0;
69
70 // All received RTP and RTCP packets for the call should be inserted to this
71 // PacketReceiver. The PacketReceiver pointer is valid as long as the
72 // VideoCall instance exists.
73 virtual PacketReceiver* Receiver() = 0;
74
75 // Returns the estimated total send bandwidth. Note: this can differ from the
76 // actual encoded bitrate.
77 virtual uint32_t SendBitrateEstimate() = 0;
78
79 // Returns the total estimated receive bandwidth for the call. Note: this can
80 // differ from the actual receive bitrate.
81 virtual uint32_t ReceiveBitrateEstimate() = 0;
82
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000083 virtual ~VideoCall() {}
84};
85
86// VideoEngine is the main class and there is only one instance serving several
87// calls.
88class VideoEngine {
89 public:
90 static VideoEngine* Create(const VideoEngineConfig& engine_config);
pbos@webrtc.org29d58392013-05-16 12:08:03 +000091 virtual ~VideoEngine() {}
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000092
93 virtual VideoCall* CreateCall(Transport* send_transport) = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000094};
95
96} // namespace newapi
97} // namespace webrtc
98
99#endif // WEBRTC_VIDEO_ENGINE_NEW_INCLUDE_VIDEO_ENGINE_H_