Lines Matching refs:VideoChannel

1643 VideoChannel::VideoChannel(rtc::Thread* thread,  in VideoChannel()  function in cricket::VideoChannel
1656 bool VideoChannel::Init() { in Init()
1663 VideoChannel::~VideoChannel() { in ~VideoChannel()
1682 bool VideoChannel::SetRenderer(uint32_t ssrc, VideoRenderer* renderer) { in SetRenderer()
1688 bool VideoChannel::ApplyViewRequest(const ViewRequest& request) { in ApplyViewRequest()
1689 return InvokeOnWorker(Bind(&VideoChannel::ApplyViewRequest_w, this, request)); in ApplyViewRequest()
1692 bool VideoChannel::AddScreencast(uint32_t ssrc, VideoCapturer* capturer) { in AddScreencast()
1694 &VideoChannel::AddScreencast_w, this, ssrc, capturer)); in AddScreencast()
1697 bool VideoChannel::SetCapturer(uint32_t ssrc, VideoCapturer* capturer) { in SetCapturer()
1702 bool VideoChannel::RemoveScreencast(uint32_t ssrc) { in RemoveScreencast()
1703 return InvokeOnWorker(Bind(&VideoChannel::RemoveScreencast_w, this, ssrc)); in RemoveScreencast()
1706 bool VideoChannel::IsScreencasting() { in IsScreencasting()
1707 return InvokeOnWorker(Bind(&VideoChannel::IsScreencasting_w, this)); in IsScreencasting()
1710 bool VideoChannel::SendIntraFrame() { in SendIntraFrame()
1716 bool VideoChannel::RequestIntraFrame() { in RequestIntraFrame()
1722 bool VideoChannel::SetVideoSend(uint32_t ssrc, in SetVideoSend()
1729 void VideoChannel::ChangeState() { in ChangeState()
1741 bool VideoChannel::GetStats(VideoMediaInfo* stats) { in GetStats()
1746 void VideoChannel::StartMediaMonitor(int cms) { in StartMediaMonitor()
1750 this, &VideoChannel::OnMediaMonitorUpdate); in StartMediaMonitor()
1754 void VideoChannel::StopMediaMonitor() { in StopMediaMonitor()
1761 const ContentInfo* VideoChannel::GetFirstContent( in GetFirstContent()
1766 bool VideoChannel::SetLocalContent_w(const MediaContentDescription* content, in SetLocalContent_w()
1811 bool VideoChannel::SetRemoteContent_w(const MediaContentDescription* content, in SetRemoteContent_w()
1861 bool VideoChannel::ApplyViewRequest_w(const ViewRequest& request) { in ApplyViewRequest_w()
1898 bool VideoChannel::AddScreencast_w(uint32_t ssrc, VideoCapturer* capturer) { in AddScreencast_w()
1902 capturer->SignalStateChange.connect(this, &VideoChannel::OnStateChange); in AddScreencast_w()
1907 bool VideoChannel::RemoveScreencast_w(uint32_t ssrc) { in RemoveScreencast_w()
1918 bool VideoChannel::IsScreencasting_w() const { in IsScreencasting_w()
1922 void VideoChannel::OnScreencastWindowEvent_s(uint32_t ssrc, in OnScreencastWindowEvent_s()
1928 void VideoChannel::OnMessage(rtc::Message *pmsg) { in OnMessage()
1949 void VideoChannel::OnConnectionMonitorUpdate( in OnConnectionMonitorUpdate()
1956 void VideoChannel::OnMediaMonitorUpdate( in OnMediaMonitorUpdate()
1962 void VideoChannel::OnScreencastWindowEvent(uint32_t ssrc, in OnScreencastWindowEvent()
1969 void VideoChannel::OnStateChange(VideoCapturer* capturer, CaptureState ev) { in OnStateChange()
1992 bool VideoChannel::GetLocalSsrc(const VideoCapturer* capturer, uint32_t* ssrc) { in GetLocalSsrc()
2004 void VideoChannel::GetSrtpCryptoSuites(std::vector<int>* crypto_suites) const { in GetSrtpCryptoSuites()