Lines Matching refs:VideoWindow
46 class GdiVideoRenderer::VideoWindow : public rtc::Win32Window { class in cricket::GdiVideoRenderer
48 VideoWindow(int x, int y, int width, int height);
49 virtual ~VideoWindow();
72 explicit WindowThread(VideoWindow* window) : window_(window) {} in WindowThread()
93 VideoWindow* window_;
113 GdiVideoRenderer::VideoWindow::VideoWindow( in VideoWindow() function in cricket::GdiVideoRenderer::VideoWindow
129 GdiVideoRenderer::VideoWindow::~VideoWindow() { in ~VideoWindow()
137 bool GdiVideoRenderer::VideoWindow::SetSize(int width, int height) { in SetSize()
149 bool GdiVideoRenderer::VideoWindow::RenderFrame(const VideoFrame* video_frame) { in RenderFrame()
165 bool GdiVideoRenderer::VideoWindow::OnMessage(UINT uMsg, WPARAM wParam, in OnMessage()
191 bool GdiVideoRenderer::VideoWindow::Initialize() { in Initialize()
204 void GdiVideoRenderer::VideoWindow::OnPaint() { in OnPaint()
216 void GdiVideoRenderer::VideoWindow::OnSize(int width, int height, in OnSize()
244 void GdiVideoRenderer::VideoWindow::OnRenderFrame(const VideoFrame* frame) { in OnRenderFrame()
266 window_.reset(new VideoWindow(initial_x_, initial_y_, width, height)); in SetSize()