Home | History | Annotate | Download | only in media

Lines Matching defs:VideoChannel

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