Searched refs:ssrc_key (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
D | webrtcvideoengine.h | 344 bool CreateChannel(uint32 ssrc_key, MediaDirection direction, 346 bool CreateUnsignalledRecvChannel(uint32 ssrc_key, int* channel_id); 348 uint32 ssrc_key); 393 bool GetSendChannelSsrcKey(uint32 local_ssrc, uint32* ssrc_key); 395 WebRtcVideoChannelSendInfo* GetSendChannelBySsrcKey(uint32 ssrc_key); 399 bool CreateSendChannelSsrcKey(uint32 local_ssrc, uint32* ssrc_key); 406 bool DeleteSendChannel(uint32 ssrc_key);
|
D | webrtcvideoengine.cc | 1593 const uint32 ssrc_key = 0; in Init() local 1594 bool result = CreateChannel(ssrc_key, MD_SENDRECV, &default_channel_id_); in Init() 1898 uint32 ssrc_key; in AddSendStream() local 1899 if (!CreateSendChannelSsrcKey(sp.first_ssrc(), &ssrc_key)) { in AddSendStream() 1909 if (!CreateChannel(ssrc_key, MD_SEND, &channel_id)) { in AddSendStream() 1915 WebRtcVideoChannelSendInfo* send_channel = GetSendChannelBySsrcKey(ssrc_key); in AddSendStream() 1956 uint32 ssrc_key; in RemoveSendStream() local 1957 if (!GetSendChannelSsrcKey(ssrc, &ssrc_key)) { in RemoveSendStream() 1962 WebRtcVideoChannelSendInfo* send_channel = GetSendChannelBySsrcKey(ssrc_key); in RemoveSendStream() 1990 return DeleteSendChannel(ssrc_key); in RemoveSendStream() [all …]
|