mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
55 lines
2.3 KiB
C
55 lines
2.3 KiB
C
|
/* GStreamer
|
||
|
* Copyright (C) 2024 Seungha Yang <seungha@centricular.com>
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Library General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library 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
|
||
|
* Library General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Library General Public
|
||
|
* License along with this library; if not, write to the
|
||
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||
|
* Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <gst/gst.h>
|
||
|
#include "gstd3d12screencapture.h"
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
|
||
|
#define GST_TYPE_D3D12_GRAPHICS_CAPTURE (gst_d3d12_graphics_capture_get_type())
|
||
|
G_DECLARE_FINAL_TYPE (GstD3D12GraphicsCapture, gst_d3d12_graphics_capture,
|
||
|
GST, D3D12_GRAPHICS_CAPTURE, GstD3D12ScreenCapture);
|
||
|
|
||
|
gboolean gst_d3d12_graphics_capture_load_library (void);
|
||
|
|
||
|
GstD3D12ScreenCapture * gst_d3d12_graphics_capture_new (GstD3D12Device * device,
|
||
|
HWND window_handle,
|
||
|
HMONITOR monitor_handle);
|
||
|
|
||
|
void gst_d3d12_graphics_capture_show_border (GstD3D12GraphicsCapture * capture,
|
||
|
gboolean show);
|
||
|
|
||
|
void gst_d3d12_graphics_capture_show_cursor (GstD3D12GraphicsCapture * capture,
|
||
|
gboolean show);
|
||
|
|
||
|
void gst_d3d12_graphics_capture_set_client_only (GstD3D12GraphicsCapture * capture,
|
||
|
gboolean client_only);
|
||
|
|
||
|
GstFlowReturn gst_d3d12_graphics_capture_do_capture (GstD3D12GraphicsCapture * capture,
|
||
|
gboolean is_d3d12,
|
||
|
const CaptureCropRect * crop_rect,
|
||
|
GstBuffer ** buffer,
|
||
|
guint * width,
|
||
|
guint * height);
|
||
|
|
||
|
G_END_DECLS
|
||
|
|