2013-07-10 00:45:36 +00:00
|
|
|
/*
|
2015-08-05 15:48:13 -07:00
|
|
|
* Copyright 2012 The WebRTC Project Authors. All rights reserved.
|
2013-07-10 00:45:36 +00:00
|
|
|
*
|
2015-08-05 15:48:13 -07:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2013-07-10 00:45:36 +00:00
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef EXAMPLES_PEERCONNECTION_CLIENT_MAIN_WND_H_
|
|
|
|
|
#define EXAMPLES_PEERCONNECTION_CLIENT_MAIN_WND_H_
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
#include <map>
|
2016-05-01 14:53:46 -07:00
|
|
|
#include <memory>
|
2013-07-10 00:45:36 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "api/media_stream_interface.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "api/video/video_frame.h"
|
|
|
|
|
#include "examples/peerconnection/client/peer_connection_client.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "media/base/media_channel.h"
|
|
|
|
|
#include "media/base/video_common.h"
|
2018-02-01 11:17:40 +01:00
|
|
|
#if defined(WEBRTC_WIN)
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/win32.h"
|
2018-02-01 11:17:40 +01:00
|
|
|
#endif // WEBRTC_WIN
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
class MainWndCallback {
|
|
|
|
|
public:
|
|
|
|
|
virtual void StartLogin(const std::string& server, int port) = 0;
|
|
|
|
|
virtual void DisconnectFromServer() = 0;
|
|
|
|
|
virtual void ConnectToPeer(int peer_id) = 0;
|
|
|
|
|
virtual void DisconnectFromCurrentPeer() = 0;
|
|
|
|
|
virtual void UIThreadCallback(int msg_id, void* data) = 0;
|
|
|
|
|
virtual void Close() = 0;
|
2018-06-19 15:03:05 +02:00
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
protected:
|
|
|
|
|
virtual ~MainWndCallback() {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Pure virtual interface for the main window.
|
|
|
|
|
class MainWindow {
|
|
|
|
|
public:
|
|
|
|
|
virtual ~MainWindow() {}
|
|
|
|
|
|
|
|
|
|
enum UI {
|
|
|
|
|
CONNECT_TO_SERVER,
|
|
|
|
|
LIST_PEERS,
|
|
|
|
|
STREAMING,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
virtual void RegisterObserver(MainWndCallback* callback) = 0;
|
|
|
|
|
|
|
|
|
|
virtual bool IsWindow() = 0;
|
|
|
|
|
virtual void MessageBox(const char* caption,
|
|
|
|
|
const char* text,
|
|
|
|
|
bool is_error) = 0;
|
|
|
|
|
|
|
|
|
|
virtual UI current_ui() = 0;
|
|
|
|
|
|
|
|
|
|
virtual void SwitchToConnectUI() = 0;
|
|
|
|
|
virtual void SwitchToPeerList(const Peers& peers) = 0;
|
|
|
|
|
virtual void SwitchToStreamingUI() = 0;
|
|
|
|
|
|
|
|
|
|
virtual void StartLocalRenderer(webrtc::VideoTrackInterface* local_video) = 0;
|
|
|
|
|
virtual void StopLocalRenderer() = 0;
|
2015-12-09 14:18:14 -08:00
|
|
|
virtual void StartRemoteRenderer(
|
|
|
|
|
webrtc::VideoTrackInterface* remote_video) = 0;
|
2013-07-10 00:45:36 +00:00
|
|
|
virtual void StopRemoteRenderer() = 0;
|
|
|
|
|
|
|
|
|
|
virtual void QueueUIThreadCallback(int msg_id, void* data) = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
|
|
|
|
|
class MainWnd : public MainWindow {
|
|
|
|
|
public:
|
|
|
|
|
static const wchar_t kClassName[];
|
|
|
|
|
|
|
|
|
|
enum WindowMessages {
|
|
|
|
|
UI_THREAD_CALLBACK = WM_APP + 1,
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-01 16:28:13 +00:00
|
|
|
MainWnd(const char* server, int port, bool auto_connect, bool auto_call);
|
2013-07-10 00:45:36 +00:00
|
|
|
~MainWnd();
|
|
|
|
|
|
|
|
|
|
bool Create();
|
|
|
|
|
bool Destroy();
|
|
|
|
|
bool PreTranslateMessage(MSG* msg);
|
|
|
|
|
|
|
|
|
|
virtual void RegisterObserver(MainWndCallback* callback);
|
|
|
|
|
virtual bool IsWindow();
|
|
|
|
|
virtual void SwitchToConnectUI();
|
|
|
|
|
virtual void SwitchToPeerList(const Peers& peers);
|
|
|
|
|
virtual void SwitchToStreamingUI();
|
|
|
|
|
virtual void MessageBox(const char* caption, const char* text, bool is_error);
|
|
|
|
|
virtual UI current_ui() { return ui_; }
|
|
|
|
|
|
|
|
|
|
virtual void StartLocalRenderer(webrtc::VideoTrackInterface* local_video);
|
|
|
|
|
virtual void StopLocalRenderer();
|
|
|
|
|
virtual void StartRemoteRenderer(webrtc::VideoTrackInterface* remote_video);
|
|
|
|
|
virtual void StopRemoteRenderer();
|
|
|
|
|
|
|
|
|
|
virtual void QueueUIThreadCallback(int msg_id, void* data);
|
|
|
|
|
|
|
|
|
|
HWND handle() const { return wnd_; }
|
|
|
|
|
|
Reland of Delete all use of cricket::VideoFrame and cricket::WebRtcVideoFrame. (patchset #1 id:1 of https://codereview.webrtc.org/2471783002/ )
Reason for revert:
Relanding after known downstream breakages have been fixed.
Original issue's description:
> Revert of Delete all use of cricket::VideoFrame and cricket::WebRtcVideoFrame. (patchset #7 id:120001 of https://codereview.webrtc.org/2383093002/ )
>
> Reason for revert:
> Breaks chrome, see https://build.chromium.org/p/chromium.webrtc.fyi/builders/Mac%20Builder/builds/19019/steps/compile/logs/stdio
>
> Analysis: Chrome uses cricket::VideoFrame, without explicitly including webrtc/media/base/videoframe.h, and breaks when that file is no longer included by any other webrtc headers. Will reland after updating Chrome.
>
> Original issue's description:
> > Delete all use of cricket::VideoFrame and cricket::WebRtcVideoFrame.
> >
> > Replaced with webrtc::VideoFrame.
> >
> > TBR=mflodman@webrtc.org
> > BUG=webrtc:5682
> >
> > Committed: https://crrev.com/45c8b8940042bd2574c39920804ade8343cefdba
> > Cr-Commit-Position: refs/heads/master@{#14885}
>
> TBR=perkj@webrtc.org,pthatcher@webrtc.org,tkchin@webrtc.org,mflodman@webrtc.org,stefan@webrtc.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=webrtc:5682
>
> Committed: https://crrev.com/7341ab8e2505c9763d208e069bda269018357e7d
> Cr-Commit-Position: refs/heads/master@{#14886}
TBR=perkj@webrtc.org,pthatcher@webrtc.org,tkchin@webrtc.org,mflodman@webrtc.org,stefan@webrtc.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=webrtc:5682
Review-Url: https://codereview.webrtc.org/2487633002
Cr-Commit-Position: refs/heads/master@{#15039}
2016-11-11 03:55:13 -08:00
|
|
|
class VideoRenderer : public rtc::VideoSinkInterface<webrtc::VideoFrame> {
|
2013-07-10 00:45:36 +00:00
|
|
|
public:
|
|
|
|
|
VideoRenderer(HWND wnd,
|
|
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
webrtc::VideoTrackInterface* track_to_render);
|
|
|
|
|
virtual ~VideoRenderer();
|
|
|
|
|
|
|
|
|
|
void Lock() { ::EnterCriticalSection(&buffer_lock_); }
|
|
|
|
|
|
|
|
|
|
void Unlock() { ::LeaveCriticalSection(&buffer_lock_); }
|
|
|
|
|
|
2016-03-23 10:33:07 +01:00
|
|
|
// VideoSinkInterface implementation
|
Reland of Delete all use of cricket::VideoFrame and cricket::WebRtcVideoFrame. (patchset #1 id:1 of https://codereview.webrtc.org/2471783002/ )
Reason for revert:
Relanding after known downstream breakages have been fixed.
Original issue's description:
> Revert of Delete all use of cricket::VideoFrame and cricket::WebRtcVideoFrame. (patchset #7 id:120001 of https://codereview.webrtc.org/2383093002/ )
>
> Reason for revert:
> Breaks chrome, see https://build.chromium.org/p/chromium.webrtc.fyi/builders/Mac%20Builder/builds/19019/steps/compile/logs/stdio
>
> Analysis: Chrome uses cricket::VideoFrame, without explicitly including webrtc/media/base/videoframe.h, and breaks when that file is no longer included by any other webrtc headers. Will reland after updating Chrome.
>
> Original issue's description:
> > Delete all use of cricket::VideoFrame and cricket::WebRtcVideoFrame.
> >
> > Replaced with webrtc::VideoFrame.
> >
> > TBR=mflodman@webrtc.org
> > BUG=webrtc:5682
> >
> > Committed: https://crrev.com/45c8b8940042bd2574c39920804ade8343cefdba
> > Cr-Commit-Position: refs/heads/master@{#14885}
>
> TBR=perkj@webrtc.org,pthatcher@webrtc.org,tkchin@webrtc.org,mflodman@webrtc.org,stefan@webrtc.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=webrtc:5682
>
> Committed: https://crrev.com/7341ab8e2505c9763d208e069bda269018357e7d
> Cr-Commit-Position: refs/heads/master@{#14886}
TBR=perkj@webrtc.org,pthatcher@webrtc.org,tkchin@webrtc.org,mflodman@webrtc.org,stefan@webrtc.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=webrtc:5682
Review-Url: https://codereview.webrtc.org/2487633002
Cr-Commit-Position: refs/heads/master@{#15039}
2016-11-11 03:55:13 -08:00
|
|
|
void OnFrame(const webrtc::VideoFrame& frame) override;
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
const BITMAPINFO& bmi() const { return bmi_; }
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
const uint8_t* image() const { return image_.get(); }
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
protected:
|
2016-03-23 10:33:07 +01:00
|
|
|
void SetSize(int width, int height);
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
enum {
|
|
|
|
|
SET_SIZE,
|
|
|
|
|
RENDER_FRAME,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
HWND wnd_;
|
|
|
|
|
BITMAPINFO bmi_;
|
2016-05-01 14:53:46 -07:00
|
|
|
std::unique_ptr<uint8_t[]> image_;
|
2013-07-10 00:45:36 +00:00
|
|
|
CRITICAL_SECTION buffer_lock_;
|
2014-07-29 17:36:52 +00:00
|
|
|
rtc::scoped_refptr<webrtc::VideoTrackInterface> rendered_track_;
|
2013-07-10 00:45:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// A little helper class to make sure we always to proper locking and
|
|
|
|
|
// unlocking when working with VideoRenderer buffers.
|
|
|
|
|
template <typename T>
|
|
|
|
|
class AutoLock {
|
|
|
|
|
public:
|
|
|
|
|
explicit AutoLock(T* obj) : obj_(obj) { obj_->Lock(); }
|
|
|
|
|
~AutoLock() { obj_->Unlock(); }
|
2018-06-19 15:03:05 +02:00
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
protected:
|
|
|
|
|
T* obj_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
enum ChildWindowID {
|
|
|
|
|
EDIT_ID = 1,
|
|
|
|
|
BUTTON_ID,
|
|
|
|
|
LABEL1_ID,
|
|
|
|
|
LABEL2_ID,
|
|
|
|
|
LISTBOX_ID,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void OnPaint();
|
|
|
|
|
void OnDestroyed();
|
|
|
|
|
|
|
|
|
|
void OnDefaultAction();
|
|
|
|
|
|
|
|
|
|
bool OnMessage(UINT msg, WPARAM wp, LPARAM lp, LRESULT* result);
|
|
|
|
|
|
|
|
|
|
static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp);
|
|
|
|
|
static bool RegisterWindowClass();
|
|
|
|
|
|
|
|
|
|
void CreateChildWindow(HWND* wnd,
|
|
|
|
|
ChildWindowID id,
|
|
|
|
|
const wchar_t* class_name,
|
|
|
|
|
DWORD control_style,
|
|
|
|
|
DWORD ex_style);
|
|
|
|
|
void CreateChildWindows();
|
|
|
|
|
|
|
|
|
|
void LayoutConnectUI(bool show);
|
|
|
|
|
void LayoutPeerListUI(bool show);
|
|
|
|
|
|
|
|
|
|
void HandleTabbing();
|
|
|
|
|
|
|
|
|
|
private:
|
2016-05-01 14:53:46 -07:00
|
|
|
std::unique_ptr<VideoRenderer> local_renderer_;
|
|
|
|
|
std::unique_ptr<VideoRenderer> remote_renderer_;
|
2013-07-10 00:45:36 +00:00
|
|
|
UI ui_;
|
|
|
|
|
HWND wnd_;
|
|
|
|
|
DWORD ui_thread_id_;
|
|
|
|
|
HWND edit1_;
|
|
|
|
|
HWND edit2_;
|
|
|
|
|
HWND label1_;
|
|
|
|
|
HWND label2_;
|
|
|
|
|
HWND button_;
|
|
|
|
|
HWND listbox_;
|
|
|
|
|
bool destroyed_;
|
|
|
|
|
void* nested_msg_;
|
|
|
|
|
MainWndCallback* callback_;
|
|
|
|
|
static ATOM wnd_class_;
|
2014-07-01 16:28:13 +00:00
|
|
|
std::string server_;
|
|
|
|
|
std::string port_;
|
|
|
|
|
bool auto_connect_;
|
|
|
|
|
bool auto_call_;
|
2013-07-10 00:45:36 +00:00
|
|
|
};
|
|
|
|
|
#endif // WIN32
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // EXAMPLES_PEERCONNECTION_CLIENT_MAIN_WND_H_
|