OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2017 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 |
11 // This file provides an example of unity native plugin APIs. | 11 // This file provides an example of unity native plugin APIs. |
12 | 12 |
13 #ifndef WEBRTC_EXAMPLES_UNITYPLUGIN_UNITY_PLUGIN_APIS_H_ | 13 #ifndef WEBRTC_EXAMPLES_UNITYPLUGIN_UNITY_PLUGIN_APIS_H_ |
14 #define WEBRTC_EXAMPLES_UNITYPLUGIN_UNITY_PLUGIN_APIS_H_ | 14 #define WEBRTC_EXAMPLES_UNITYPLUGIN_UNITY_PLUGIN_APIS_H_ |
15 | 15 |
16 #include <stdint.h> | 16 #include <stdint.h> |
17 | 17 |
18 // Defintions of callback functions. | 18 // Definitions of callback functions. |
19 typedef void (*VIDEOFRAMEREADY_CALLBACK)(uint8_t* buffer, | 19 typedef void (*I420FRAMEREADY_CALLBACK)(const uint8_t* data_y, |
20 uint32_t width, | 20 const uint8_t* data_u, |
21 uint32_t height, | 21 const uint8_t* data_v, |
22 uint32_t stride); | 22 int stride_y, |
| 23 int stride_u, |
| 24 int stride_v, |
| 25 uint32_t width, |
| 26 uint32_t height); |
23 typedef void (*LOCALDATACHANNELREADY_CALLBACK)(); | 27 typedef void (*LOCALDATACHANNELREADY_CALLBACK)(); |
24 typedef void (*DATAFROMEDATECHANNELREADY_CALLBACK)(const char* msg); | 28 typedef void (*DATAFROMEDATECHANNELREADY_CALLBACK)(const char* msg); |
25 typedef void (*FAILURE_CALLBACK)(const char* msg); | 29 typedef void (*FAILURE_CALLBACK)(const char* msg); |
26 typedef void (*LOCALSDPREADYTOSEND_CALLBACK)(const char* msg); | 30 typedef void (*LOCALSDPREADYTOSEND_CALLBACK)(const char* type, const char* sdp); |
27 typedef void (*ICECANDIDATEREADYTOSEND_CALLBACK)(const char* msg); | 31 typedef void (*ICECANDIDATEREADYTOSEND_CALLBACK)(const char* candidate, |
| 32 const int sdp_mline_index, |
| 33 const char* sdp_mid); |
28 typedef void (*AUDIOBUSREADY_CALLBACK)(const void* audio_data, | 34 typedef void (*AUDIOBUSREADY_CALLBACK)(const void* audio_data, |
29 int bits_per_sample, | 35 int bits_per_sample, |
30 int sample_rate, | 36 int sample_rate, |
31 int number_of_channels, | 37 int number_of_channels, |
32 int number_of_frames); | 38 int number_of_frames); |
33 | 39 |
34 #define WEBRTC_PLUGIN_API __declspec(dllexport) | 40 #define WEBRTC_PLUGIN_API __declspec(dllexport) |
35 extern "C" { | 41 extern "C" { |
36 // Create a peerconnection and return a unique peer connection id. | 42 // Create a peerconnection and return a unique peer connection id. |
37 WEBRTC_PLUGIN_API int CreatePeerConnection(); | 43 WEBRTC_PLUGIN_API int CreatePeerConnection(const char** turn_urls, |
| 44 const int no_of_urls, |
| 45 const char* username, |
| 46 const char* credential); |
38 // Close a peerconnection. | 47 // Close a peerconnection. |
39 WEBRTC_PLUGIN_API bool ClosePeerConnection(int peer_connection_id); | 48 WEBRTC_PLUGIN_API bool ClosePeerConnection(int peer_connection_id); |
40 // Add a audio stream. If audio_only is true, the stream only has an audio | 49 // Add a audio stream. If audio_only is true, the stream only has an audio |
41 // track and no video track. | 50 // track and no video track. |
42 WEBRTC_PLUGIN_API bool AddStream(int peer_connection_id, bool audio_only); | 51 WEBRTC_PLUGIN_API bool AddStream(int peer_connection_id, bool audio_only); |
43 // Add a data channel to peer connection. | 52 // Add a data channel to peer connection. |
44 WEBRTC_PLUGIN_API bool AddDataChannel(int peer_connection_id); | 53 WEBRTC_PLUGIN_API bool AddDataChannel(int peer_connection_id); |
45 // Create a peer connection offer. | 54 // Create a peer connection offer. |
46 WEBRTC_PLUGIN_API bool CreateOffer(int peer_connection_id); | 55 WEBRTC_PLUGIN_API bool CreateOffer(int peer_connection_id); |
47 // Create a peer connection answer. | 56 // Create a peer connection answer. |
48 WEBRTC_PLUGIN_API bool CreateAnswer(int peer_connection_id); | 57 WEBRTC_PLUGIN_API bool CreateAnswer(int peer_connection_id); |
49 // Send data through data channel. | 58 // Send data through data channel. |
50 WEBRTC_PLUGIN_API bool SendDataViaDataChannel(int peer_connection_id, | 59 WEBRTC_PLUGIN_API bool SendDataViaDataChannel(int peer_connection_id, |
51 const char* data); | 60 const char* data); |
52 // Set audio control. If is_mute=true, no audio will playout. If is_record=true, | 61 // Set audio control. If is_mute=true, no audio will playout. If is_record=true, |
53 // AUDIOBUSREADY_CALLBACK will be called every 10 ms. | 62 // AUDIOBUSREADY_CALLBACK will be called every 10 ms. |
54 WEBRTC_PLUGIN_API bool SetAudioControl(int peer_connection_id, | 63 WEBRTC_PLUGIN_API bool SetAudioControl(int peer_connection_id, |
55 bool is_mute, | 64 bool is_mute, |
56 bool is_record); | 65 bool is_record); |
| 66 // Set remote sdp. |
| 67 WEBRTC_PLUGIN_API bool SetRemoteDescription(int peer_connection_id, |
| 68 const char* type, |
| 69 const char* sdp); |
| 70 // Add ice candidate. |
| 71 WEBRTC_PLUGIN_API bool AddIceCandidate(const int peer_connection_id, |
| 72 const char* candidate, |
| 73 const int sdp_mlineindex, |
| 74 const char* sdp_mid); |
57 | 75 |
58 // Register callback functions. | 76 // Register callback functions. |
59 WEBRTC_PLUGIN_API bool RegisterOnVideoFramReady( | 77 WEBRTC_PLUGIN_API bool RegisterOnLocalI420FrameReady( |
60 int peer_connection_id, | 78 int peer_connection_id, |
61 VIDEOFRAMEREADY_CALLBACK callback); | 79 I420FRAMEREADY_CALLBACK callback); |
| 80 WEBRTC_PLUGIN_API bool RegisterOnRemoteI420FrameReady( |
| 81 int peer_connection_id, |
| 82 I420FRAMEREADY_CALLBACK callback); |
62 WEBRTC_PLUGIN_API bool RegisterOnLocalDataChannelReady( | 83 WEBRTC_PLUGIN_API bool RegisterOnLocalDataChannelReady( |
63 int peer_connection_id, | 84 int peer_connection_id, |
64 LOCALDATACHANNELREADY_CALLBACK callback); | 85 LOCALDATACHANNELREADY_CALLBACK callback); |
65 WEBRTC_PLUGIN_API bool RegisterOnDataFromDataChannelReady( | 86 WEBRTC_PLUGIN_API bool RegisterOnDataFromDataChannelReady( |
66 int peer_connection_id, | 87 int peer_connection_id, |
67 DATAFROMEDATECHANNELREADY_CALLBACK callback); | 88 DATAFROMEDATECHANNELREADY_CALLBACK callback); |
68 WEBRTC_PLUGIN_API bool RegisterOnFailure(int peer_connection_id, | 89 WEBRTC_PLUGIN_API bool RegisterOnFailure(int peer_connection_id, |
69 FAILURE_CALLBACK callback); | 90 FAILURE_CALLBACK callback); |
70 WEBRTC_PLUGIN_API bool RegisterOnAudioBusReady(int peer_connection_id, | 91 WEBRTC_PLUGIN_API bool RegisterOnAudioBusReady(int peer_connection_id, |
71 AUDIOBUSREADY_CALLBACK callback); | 92 AUDIOBUSREADY_CALLBACK callback); |
72 WEBRTC_PLUGIN_API bool RegisterOnLocalSdpReadytoSend( | 93 WEBRTC_PLUGIN_API bool RegisterOnLocalSdpReadytoSend( |
73 int peer_connection_id, | 94 int peer_connection_id, |
74 LOCALSDPREADYTOSEND_CALLBACK callback); | 95 LOCALSDPREADYTOSEND_CALLBACK callback); |
75 WEBRTC_PLUGIN_API bool RegisterOnIceCandiateReadytoSend( | 96 WEBRTC_PLUGIN_API bool RegisterOnIceCandiateReadytoSend( |
76 int peer_connection_id, | 97 int peer_connection_id, |
77 ICECANDIDATEREADYTOSEND_CALLBACK callback); | 98 ICECANDIDATEREADYTOSEND_CALLBACK callback); |
78 WEBRTC_PLUGIN_API int ReceivedSdp(int peer_connection_id, const char* sdp); | |
79 WEBRTC_PLUGIN_API bool ReceivedIceCandidate(int peer_connection_id, | |
80 const char* ice_candidate); | |
81 } | 99 } |
82 | 100 |
83 #endif // WEBRTC_EXAMPLES_UNITYPLUGIN_UNITY_PLUGIN_APIS_H_ | 101 #endif // WEBRTC_EXAMPLES_UNITYPLUGIN_UNITY_PLUGIN_APIS_H_ |
OLD | NEW |