2017-11-02 06:55:25 +00:00
|
|
|
/*
|
2017-12-03 15:31:16 +00:00
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
2019-02-22 11:16:14 +00:00
|
|
|
Copyright (C) 2017-2019 Geoffrey McRae <geoff@hostfission.com>
|
2017-12-11 17:30:47 +00:00
|
|
|
https://looking-glass.hostfission.com
|
2017-11-02 06:55:25 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ICapture.h"
|
2018-07-25 19:50:06 +00:00
|
|
|
#include "Com.h"
|
2018-07-27 16:27:36 +00:00
|
|
|
#include "TextureConverter.h"
|
2018-07-25 19:50:06 +00:00
|
|
|
#include "MFT/H264.h"
|
2017-11-02 11:37:19 +00:00
|
|
|
|
2018-10-03 14:07:34 +00:00
|
|
|
#include <list>
|
|
|
|
|
2017-11-02 11:37:19 +00:00
|
|
|
#define W32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2017-12-29 09:53:52 +00:00
|
|
|
#include <shlwapi.h>
|
2017-12-14 19:18:31 +00:00
|
|
|
#include <stdio.h>
|
2017-12-29 09:53:52 +00:00
|
|
|
|
2018-10-19 09:20:01 +00:00
|
|
|
#define DXGI_CURSOR_RING_SIZE 3
|
2018-10-19 09:14:00 +00:00
|
|
|
|
2017-11-02 06:55:25 +00:00
|
|
|
namespace Capture
|
|
|
|
{
|
2018-07-25 19:50:06 +00:00
|
|
|
class DXGI : public ICapture
|
2017-11-02 06:55:25 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
DXGI();
|
2017-12-29 09:53:52 +00:00
|
|
|
virtual ~DXGI();
|
2017-11-16 09:53:22 +00:00
|
|
|
|
|
|
|
const char * GetName() { return "DXGI"; }
|
|
|
|
|
2018-07-23 15:11:19 +00:00
|
|
|
bool CanInitialize();
|
2017-11-16 09:53:22 +00:00
|
|
|
bool Initialize(CaptureOptions * options);
|
2017-12-29 09:53:52 +00:00
|
|
|
|
2017-11-02 06:55:25 +00:00
|
|
|
void DeInitialize();
|
2017-12-07 19:24:17 +00:00
|
|
|
bool ReInitialize()
|
|
|
|
{
|
|
|
|
DeInitialize();
|
|
|
|
/*
|
|
|
|
DXGI needs some time when mode switches occur, failing to do so causes
|
|
|
|
failure to start and exceptions internal to DXGI
|
|
|
|
*/
|
2017-12-11 18:05:21 +00:00
|
|
|
Sleep(400);
|
2017-12-07 19:24:17 +00:00
|
|
|
return Initialize(m_options);
|
|
|
|
}
|
|
|
|
|
2017-11-02 06:55:25 +00:00
|
|
|
enum FrameType GetFrameType();
|
|
|
|
size_t GetMaxFrameSize();
|
2018-10-09 06:48:44 +00:00
|
|
|
unsigned int Capture();
|
2018-10-19 09:14:00 +00:00
|
|
|
GrabStatus GetFrame (struct FrameInfo & frame );
|
2018-10-03 14:07:34 +00:00
|
|
|
bool GetCursor(CursorInfo & cursor);
|
2018-10-19 09:14:00 +00:00
|
|
|
void FreeCursor();
|
2018-09-29 17:50:43 +00:00
|
|
|
GrabStatus DiscardFrame();
|
2017-11-02 06:55:25 +00:00
|
|
|
|
|
|
|
private:
|
2018-10-03 14:07:34 +00:00
|
|
|
|
2017-12-29 09:53:52 +00:00
|
|
|
bool InitRawCapture();
|
2018-07-27 20:15:55 +00:00
|
|
|
bool InitYUV420Capture();
|
2017-12-29 09:53:52 +00:00
|
|
|
|
2018-10-19 09:14:00 +00:00
|
|
|
CursorInfo m_cursorRing[DXGI_CURSOR_RING_SIZE];
|
|
|
|
unsigned int m_cursorRPos, m_cursorWPos;
|
2018-10-03 14:07:34 +00:00
|
|
|
|
2018-09-29 17:50:43 +00:00
|
|
|
ID3D11Texture2DPtr m_ftexture;
|
|
|
|
|
2018-05-31 08:51:28 +00:00
|
|
|
GrabStatus ReleaseFrame();
|
2018-09-29 17:50:43 +00:00
|
|
|
GrabStatus GrabFrameRaw (struct FrameInfo & frame);
|
|
|
|
GrabStatus GrabFrameYUV420 (struct FrameInfo & frame);
|
2017-12-29 09:53:52 +00:00
|
|
|
|
2017-11-16 09:53:22 +00:00
|
|
|
CaptureOptions * m_options;
|
|
|
|
|
2017-12-29 09:53:52 +00:00
|
|
|
bool m_initialized;
|
2018-12-04 10:25:50 +00:00
|
|
|
bool m_started;
|
2017-12-29 09:53:52 +00:00
|
|
|
unsigned int m_width;
|
|
|
|
unsigned int m_height;
|
2018-12-04 10:25:50 +00:00
|
|
|
DXGI_FORMAT m_pixelFormat;
|
2017-12-29 09:53:52 +00:00
|
|
|
enum FrameType m_frameType;
|
2017-11-03 11:20:48 +00:00
|
|
|
|
2017-12-14 19:18:31 +00:00
|
|
|
IDXGIFactory1Ptr m_dxgiFactory;
|
|
|
|
ID3D11DevicePtr m_device;
|
2017-11-03 11:20:48 +00:00
|
|
|
D3D_FEATURE_LEVEL m_featureLevel;
|
2017-12-14 19:18:31 +00:00
|
|
|
ID3D11DeviceContextPtr m_deviceContext;
|
2019-02-07 03:41:30 +00:00
|
|
|
IDXGIOutputPtr m_output;
|
2017-12-14 19:18:31 +00:00
|
|
|
IDXGIOutputDuplicationPtr m_dup;
|
2017-12-18 01:03:22 +00:00
|
|
|
bool m_releaseFrame;
|
2018-07-27 20:15:55 +00:00
|
|
|
ID3D11Texture2DPtr m_texture[3];
|
2018-07-27 16:27:36 +00:00
|
|
|
TextureConverter * m_textureConverter;
|
2018-07-25 19:50:06 +00:00
|
|
|
MFT::H264 * m_h264;
|
2017-12-29 09:53:52 +00:00
|
|
|
|
2018-10-03 14:07:34 +00:00
|
|
|
int m_lastCursorX, m_lastCursorY;
|
2017-12-12 15:29:53 +00:00
|
|
|
BOOL m_lastMouseVis;
|
2017-11-02 06:55:25 +00:00
|
|
|
};
|
|
|
|
};
|