2011年(18)
分类: C/C++
2011-06-02 10:52:24
Start a call
Disconnect a call
Receive a call from the remote peer
Remote Peer initiates the disconnection
PeerConnection Native APIs Class PeerConnectionObserverThis class declares an abstract interface for a user defined observer. It is up to the PeerConnection user to implement a derived class which implements the observer class. The observer is registered using RegisterObserver().
class PeerConnectionObserver {
public:
virtual void OnError();
virtual void OnSignalingMessage(const std::string& msg);
virtual void OnAddStream(const std::string& stream_id,
int channel_id,
bool video);
virtual void OnRemoveStream(const std::string& stream_id,
int channel_id,
bool video);
};
This method will be called when an error occurs in PeerConnection.
Syntaxvoid OnError();
PeerConnectionObserver::OnSignalingMessageThis method is called once there’s a signaling message is ready.
Syntaxvoid OnSignalingMessage(const std::string& msg);
Parametersmsg [in] A Json format signaling message.
Remarks
Signaling message consists of only SDP "type" message will not have any additional information about session.
The user should send the signaling message from the callback to the remote peer.
The signaling message passed to this callback has various meanings depends on the client and the current state:
This method is called when a remote peer accepts a media connection.
Syntaxvoid OnAddStream(const std::string& stream_id, bool video);
Parametersstream_id [in] Remote media stream id.
video [in] True if it’s a video stream; false if it’s a voice stream
PeerConnectionObserver::OnRemoveStreamThis method is called when a communication channel between the peers has ended.
Syntaxvoid OnRemoveStream(const std::string& stream_id, bool video);
Parametersstream_id [in] Remote media stream id.
video [in] True if it’s a video stream; false if it’s a voice stream
Class PeerConnectionclass PeerConnection {
public:
explicit PeerConnection(const std::string& config);
bool Initialize();
void RegisterObserver(PeerConnectionObserver* observer);
bool SignalingMessage(const std::string& msg);
bool AddStream(const std::string& stream_id, bool video);
bool RemoveStream(const std::string& stream_id);
bool Connect();
void Close();
bool SetAudioDevice(const std::string& wave_in_device,
const std::string& wave_out_device);
bool SetLocalVideoRenderer(cricket::VideoRenderer* renderer);
bool SetVideoRenderer(const std::string& stream_id,
cricket::VideoRenderer* renderer);
bool SetVideoCapture(const std::string& cam_device);
};
Constructor.
SyntaxPeerConnection::PeerConnection(const std::string& config);
Parametersconfig [in] The configuration string gives the address of a STUN or TURN server to use to establish the connection
RemarksThe allowed formats for the config string are:
The "TYPE" is one of:
Initialize PeerConnection.
Syntaxbool Initialize();
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
RemarksThis should be called before any other PeerConnection APIs.
PeerConnection::RegisterObserverRegisters an instance of a user implementation of the PeerConnectionObserver.
Syntaxvoid RegisterObserver(PeerConnectionObserver* observer);
Parametersobserver [in] A pointer to an instance of the PeerConnectionObserver derived class.
RemarksRegisterObserver must be called on the constructing thread however and once a connection has been initiated, it should not be called again as the pointer is referenced from other threads.
PeerConnection::SignalingMessageHandle a signaling message from the remote peer.
Syntaxvoid SignalingMessage(const std::string& msg);
Parametersmsg [in] A Json format signaling message.
RemarksThere is no support of mid-call session signaling exchange supported in this version of PC. After session setup, only messages are allowed is tearing down the session ( via RemoveStream or close).
PeerConnection::AddStreamAttempts to starting sending the given stream to the remote peer.
Syntaxbool AddStream(const std::string& stream_id, bool video);
Parametersstream_id [in] Local stream id.
video [in] True for video; false for voice.
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
PeerConnection::RemoveStreamStops sending of the given stream to the remote peer.
Syntaxbool RemoveStream(const std::string& stream_id);
Parametersstream_id [in] Local stream id.
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
RemarksAfter successfully closing the local stream, PC will invoke OnSignalingMessage callback. This message consists of all the streams media information and ICE candidates, but those closed stream's ICE candidates will have port number set to 0.
PeerConnection::Connect Syntaxbool Connect();
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
RemarksThe Connect method tells PC it is time to send signaling information after AddStream. So all AddStreams should be called before connect, otherwise it doesn't know when to kick in sending signaling information.
After calling to Connect, the PeerConnectionObserver::OnSignalingMessage will be triggered with a signaling message. This signalling message is the offer to the remote peer. The user should send this signaling message to the remote peer he/she wants to connect.
PeerConnection::CloseRemove all the streams and tearing down the session.
Syntaxbool Close();
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
RemarksAfter the Close() is called, the OnSignalingMessage will be invoked asynchronously. And before OnSignalingMessage is called, OnRemoveStream will be called for each stream that was active
PeerConnection::SetAudioDeviceSet the audio input & output devices.
Syntaxbool SetAudioDevice(const std::string& wave_in_device,
const std::string& wave_out_device);
wave_in_device [in] Audio input device name, an empty string means to use the default device.
wave_out_device [in] Audio output device name, an empty string means to use the default device.
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
PeerConnection::SetLocalVideoRendererSet the video renderer for camera preview.
Syntaxbool SetLocalVideoRenderer(cricket::VideoRenderer* renderer);
Parametersrenderer [in] A pointer to an instance of the cricket::VideoRenderer derived class.
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
PeerConnection::SetVideoRendererSet the video renderer for the specified stream.
Syntaxbool SetVideoRenderer(const std::string& stream_id, cricket::VideoRenderer* renderer);
Parametersstream_id [in] Remote media stream id.
renderer [in] A pointer to an instance of the cricket::VideoRenderer derived class.
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
PeerConnection::SetVideoCaptureSet the video capture device.
Syntaxbool SetVideoCapture(const std::string& cam_device);
Parameterscam_device [in] Video capture device name, an empty string means to use the default device.
Return ValuesThe return value is true if the function succeeds. If the function fails, the return value is false.
ReferenceThe current HTML5 specification for video conferencing and PeerConnection is here:
The source code of the PeerConnection Native API is here:
The sample app of the PeerConnection Native is here: