/* GStreamer * Copyright (C) 2023 Seungha Yang * * 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 #include #include #include #include #include /* * Communication Sequence * * +--------+ +--------+ * | client | | server | * +--------+ +--------+ * | | * | | * |<---------- CONFIG ------------+ * | | * +--------- NEED-DATA ---------->| * | +-------+ * | | Export * | | D3D11 memory * | |<------+ * |<-------- HAVE-DATA -----------+ * +--------+ | * Import | | * D3D11 memory | | * +------->+ | * +--------- READ-DONE ---------->| * +--------+ | * Release | | * D3D11 memory | | * +------->| | * +-------- RELEASE-DATA -------->| * | | * +--------- NEED-DATA ---------->| * | | * |<----------- EOS --------------+ * +--------+ | * Cleanup all | | * shared resources | | * +------->| | * +------------ FIN ------------->| */ enum class GstD3D11IpcPktType : guint8 { UNKNOWN, CONFIG, NEED_DATA, HAVE_DATA, READ_DONE, RELEASE_DATA, EOS, FIN, }; #pragma pack(push, 1) struct GstD3D11IpcPacketHeader { GstD3D11IpcPktType type; guint32 payload_size; guint32 magic; }; struct GstD3D11IpcMemLayout { guint32 size; guint32 pitch; guint32 offset[4]; }; #pragma pack(pop) constexpr guint GST_D3D11_IPC_PKT_HEADER_SIZE = sizeof (GstD3D11IpcPacketHeader); #define GST_D3D11_IPC_FORMATS \ "{ RGBA64_LE, RGB10A2_LE, BGRA, RGBA, BGRx, RGBx, VUYA, NV12, NV21, " \ "P010_10LE, P012_LE, P016_LE }" bool gst_d3d11_ipc_pkt_identify (std::vector & buf, GstD3D11IpcPacketHeader & header); bool gst_d3d11_ipc_pkt_build_config (std::vector & buf, DWORD pid, gint64 adapter_luid, GstCaps * caps); bool gst_d3d11_ipc_pkt_parse_config (std::vector & buf, DWORD & pid, gint64 & adapter_luid, GstCaps ** caps); void gst_d3d11_ipc_pkt_build_need_data (std::vector & buf); bool gst_d3d11_ipc_pkt_build_have_data (std::vector & buf, GstClockTime pts, const GstD3D11IpcMemLayout & layout, const HANDLE handle, GstCaps * caps); bool gst_d3d11_ipc_pkt_parse_have_data (const std::vector & buf, GstClockTime & pts, GstD3D11IpcMemLayout & layout, HANDLE & handle, GstCaps ** caps); void gst_d3d11_ipc_pkt_build_read_done (std::vector & buf); void gst_d3d11_ipc_pkt_build_release_data (std::vector & buf, const HANDLE handle); bool gst_d3d11_ipc_pkt_parse_release_data (std::vector & buf, HANDLE & handle); void gst_d3d11_ipc_pkt_build_eos (std::vector & buf); void gst_d3d11_ipc_pkt_build_fin (std::vector & buf); bool gst_d3d11_ipc_clock_is_system (GstClock * clock); std::string gst_d3d11_ipc_wstring_to_string (const std::wstring & str); std::wstring gst_d3d11_ipc_string_to_wstring (const std::string & str); std::string gst_d3d11_ipc_win32_error_to_string (guint err);