本文整理汇总了C++中Endpoint::Attach方法的典型用法代码示例。如果您正苦于以下问题:C++ Endpoint::Attach方法的具体用法?C++ Endpoint::Attach怎么用?C++ Endpoint::Attach使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Endpoint
的用法示例。
在下文中一共展示了Endpoint::Attach方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: EndpointAttachToEndpoint
int MediaSession::EndpointAttachToEndpoint(int endpointId,int sourceId,MediaFrame::Type media)
{
//Get endpoint
Endpoints::iterator it = endpoints.find(endpointId);
//If not found
if (it==endpoints.end())
//Exit
return Error("Endpoint not found\n");
//Get it
Endpoint* endpoint = it->second;
//Log endpoint tag name
Log("-EndpointAttachToEndpoint [%ls]\n",endpoint->GetName().c_str());
//Get source endpoint
it = endpoints.find(sourceId);
//If not found
if (it==endpoints.end())
//Exit
return Error("Endpoint not found\n");
//Get it
Endpoint* source = it->second;
//Attach
return endpoint->Attach(media,source->GetJoinable(media));
}
示例2: EndpointAttachToVideoMixerPort
int MediaSession::EndpointAttachToVideoMixerPort(int endpointId,int mixerId,int portId)
{
//Get endpoint
Endpoints::iterator it = endpoints.find(endpointId);
//If not found
if (it==endpoints.end())
//Exit
return Error("Endpoint not found\n");
//Get it
Endpoint* endpoint = it->second;
//Log endpoint tag name
Log("-EndpointAttachToVideoMixerPort [%ls]\n",endpoint->GetName().c_str());
//Get Player
VideoMixers::iterator itMixer = videoMixers.find(mixerId);
//If not found
if (itMixer==videoMixers.end())
//Exit
return Error("VideoMixerResource not found\n");
//Get it
VideoMixerResource* videoMixer = itMixer->second;
//And attach
return endpoint->Attach(MediaFrame::Video,videoMixer->GetJoinable(portId));
}
示例3: EndpointAttachToVideoTranscoder
int MediaSession::EndpointAttachToVideoTranscoder(int endpointId,int videoTranscoderId)
{
//Get endpoint
Endpoints::iterator it = endpoints.find(endpointId);
//If not found
if (it==endpoints.end())
//Exit
return Error("Endpoint not found [%d]\n",endpointId);
//Get it
Endpoint* endpoint = it->second;
//Get Video transcoder
VideoTranscoders::iterator itTranscoder = videoTranscoders.find(videoTranscoderId);
//If not found
if (itTranscoder==videoTranscoders.end())
//Exit
return Error("VideoTranscoder not found[%d]\n",videoTranscoderId);
//Get it
VideoTranscoder* videoTranscoder = itTranscoder->second;
//Log endpoint tag name
Log("-EndpointAttachToVideoTranscoder [endpoint:%ls,transcoder:%ls]\n",endpoint->GetName().c_str(),videoTranscoder->GetName().c_str());
//And attach
return endpoint->Attach(MediaFrame::Video,videoTranscoder);
}
示例4: EndpointAttachToPlayer
int MediaSession::EndpointAttachToPlayer(int endpointId,int playerId,MediaFrame::Type media)
{
//Get endpoint
Endpoints::iterator it = endpoints.find(endpointId);
//If not found
if (it==endpoints.end())
//Exit
return Error("Endpoint not found\n");
//Get it
Endpoint* endpoint = it->second;
//Log endpoint tag name
Log("-EndpointAttachToPlayer [%ls]\n",endpoint->GetName().c_str());
//Get Player
Players::iterator itPlayer = players.find(playerId);
//If not found
if (itPlayer==players.end())
//Exit
return Error("Player not found\n");
//Get it
Player* player = itPlayer->second;
//Attach
return endpoint->Attach(media,player->GetJoinable(media));
}