2008-09-30 11:19:10 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.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
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2008-09-30 11:19:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_WASAPI_UTIL_H__
|
|
|
|
#define __GST_WASAPI_UTIL_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2013-03-26 14:22:16 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2013-03-28 15:52:26 +00:00
|
|
|
#include <gst/audio/gstaudiosrc.h>
|
|
|
|
#include <gst/audio/gstaudiosink.h>
|
2008-09-30 11:19:10 +00:00
|
|
|
|
2018-02-06 18:10:49 +00:00
|
|
|
#include <mmdeviceapi.h>
|
2008-09-30 11:19:10 +00:00
|
|
|
#include <audioclient.h>
|
|
|
|
|
2018-02-14 06:43:36 +00:00
|
|
|
#include "gstaudioclient3.h"
|
2021-08-23 18:54:27 +00:00
|
|
|
#include "gstmmdeviceenumerator.h"
|
2018-02-14 06:43:36 +00:00
|
|
|
|
2018-01-24 02:50:38 +00:00
|
|
|
/* Static Caps shared between source, sink, and device provider */
|
|
|
|
#define GST_WASAPI_STATIC_CAPS "audio/x-raw, " \
|
|
|
|
"format = (string) " GST_AUDIO_FORMATS_ALL ", " \
|
|
|
|
"layout = (string) interleaved, " \
|
|
|
|
"rate = " GST_AUDIO_RATE_RANGE ", " \
|
|
|
|
"channels = " GST_AUDIO_CHANNELS_RANGE
|
|
|
|
|
2018-02-14 03:57:31 +00:00
|
|
|
/* Standard error path */
|
|
|
|
#define HR_FAILED_AND(hr,func,and) \
|
2019-01-14 20:33:23 +00:00
|
|
|
G_STMT_START { \
|
2018-05-22 20:58:22 +00:00
|
|
|
if (FAILED (hr)) { \
|
2018-02-14 03:57:31 +00:00
|
|
|
gchar *msg = gst_wasapi_util_hresult_to_string (hr); \
|
2018-04-04 13:02:19 +00:00
|
|
|
GST_ERROR_OBJECT (self, #func " failed (%x): %s", (guint) hr, msg); \
|
2018-02-14 03:57:31 +00:00
|
|
|
g_free (msg); \
|
|
|
|
and; \
|
|
|
|
} \
|
2019-01-14 20:33:23 +00:00
|
|
|
} G_STMT_END
|
2018-02-14 03:57:31 +00:00
|
|
|
|
|
|
|
#define HR_FAILED_RET(hr,func,ret) HR_FAILED_AND(hr,func,return ret)
|
|
|
|
|
|
|
|
#define HR_FAILED_GOTO(hr,func,where) HR_FAILED_AND(hr,func,res = FALSE; goto where)
|
|
|
|
|
2019-01-14 20:33:23 +00:00
|
|
|
#define HR_FAILED_ELEMENT_ERROR_AND(hr,func,el,and) \
|
|
|
|
G_STMT_START { \
|
|
|
|
if (FAILED (hr)) { \
|
|
|
|
gchar *msg = gst_wasapi_util_hresult_to_string (hr); \
|
|
|
|
GST_ERROR_OBJECT (el, #func " failed (%x): %s", (guint) hr, msg); \
|
|
|
|
if (GST_IS_AUDIO_SRC (el)) \
|
|
|
|
GST_ELEMENT_ERROR(el, RESOURCE, READ, \
|
|
|
|
(#func " failed (%x): %s", (guint) hr, msg), (NULL)); \
|
|
|
|
else \
|
|
|
|
GST_ELEMENT_ERROR(el, RESOURCE, WRITE, \
|
|
|
|
(#func " failed (%x): %s", (guint) hr, msg), (NULL)); \
|
|
|
|
g_free (msg); \
|
|
|
|
and; \
|
|
|
|
} \
|
|
|
|
} G_STMT_END
|
|
|
|
|
|
|
|
#define HR_FAILED_ELEMENT_ERROR_RET(hr,func,el,ret) \
|
|
|
|
HR_FAILED_ELEMENT_ERROR_AND(hr,func,el,return ret)
|
|
|
|
|
|
|
|
|
2018-01-21 03:32:30 +00:00
|
|
|
/* Device role enum property */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_WASAPI_DEVICE_ROLE_CONSOLE,
|
|
|
|
GST_WASAPI_DEVICE_ROLE_MULTIMEDIA,
|
|
|
|
GST_WASAPI_DEVICE_ROLE_COMMS
|
|
|
|
} GstWasapiDeviceRole;
|
|
|
|
#define GST_WASAPI_DEVICE_TYPE_ROLE (gst_wasapi_device_role_get_type())
|
|
|
|
GType gst_wasapi_device_role_get_type (void);
|
|
|
|
|
|
|
|
/* Utilities */
|
|
|
|
|
2018-02-14 06:43:36 +00:00
|
|
|
gboolean gst_wasapi_util_have_audioclient3 (void);
|
|
|
|
|
2018-01-21 03:32:30 +00:00
|
|
|
gint gst_wasapi_device_role_to_erole (gint role);
|
|
|
|
|
|
|
|
gint gst_wasapi_erole_to_device_role (gint erole);
|
|
|
|
|
2018-02-06 18:26:41 +00:00
|
|
|
gchar *gst_wasapi_util_hresult_to_string (HRESULT hr);
|
2008-09-30 11:19:10 +00:00
|
|
|
|
2021-08-23 18:54:27 +00:00
|
|
|
gboolean gst_wasapi_util_get_devices (GstMMDeviceEnumerator * enumerator,
|
|
|
|
gboolean active,
|
|
|
|
GList ** devices);
|
2018-01-24 19:21:22 +00:00
|
|
|
|
2021-08-23 18:54:27 +00:00
|
|
|
gboolean gst_wasapi_util_get_device (GstMMDeviceEnumerator * enumerator,
|
2018-04-03 19:37:14 +00:00
|
|
|
gint data_flow, gint role, const wchar_t * device_strid,
|
2021-03-17 21:45:57 +00:00
|
|
|
IMMDevice ** ret_device);
|
|
|
|
|
|
|
|
gboolean gst_wasapi_util_get_audio_client (GstElement * self,
|
|
|
|
IMMDevice * device, IAudioClient ** ret_client);
|
2018-02-06 18:10:49 +00:00
|
|
|
|
|
|
|
gboolean gst_wasapi_util_get_device_format (GstElement * element,
|
|
|
|
gint device_mode, IMMDevice * device, IAudioClient * client,
|
|
|
|
WAVEFORMATEX ** ret_format);
|
2013-03-27 09:10:21 +00:00
|
|
|
|
|
|
|
gboolean gst_wasapi_util_get_render_client (GstElement * element,
|
2018-01-21 03:32:30 +00:00
|
|
|
IAudioClient * client, IAudioRenderClient ** ret_render_client);
|
2013-03-27 09:10:21 +00:00
|
|
|
|
2013-03-28 15:52:26 +00:00
|
|
|
gboolean gst_wasapi_util_get_capture_client (GstElement * element,
|
2018-01-21 03:32:30 +00:00
|
|
|
IAudioClient * client, IAudioCaptureClient ** ret_capture_client);
|
2013-03-28 15:52:26 +00:00
|
|
|
|
|
|
|
gboolean gst_wasapi_util_get_clock (GstElement * element,
|
2018-01-21 03:32:30 +00:00
|
|
|
IAudioClient * client, IAudioClock ** ret_clock);
|
2013-03-28 15:52:26 +00:00
|
|
|
|
2018-01-24 02:50:38 +00:00
|
|
|
gboolean gst_wasapi_util_parse_waveformatex (WAVEFORMATEXTENSIBLE * format,
|
|
|
|
GstCaps * template_caps, GstCaps ** out_caps,
|
|
|
|
GstAudioChannelPosition ** out_positions);
|
2008-09-30 11:19:10 +00:00
|
|
|
|
2018-02-06 23:18:58 +00:00
|
|
|
void gst_wasapi_util_get_best_buffer_sizes (GstAudioRingBufferSpec * spec,
|
|
|
|
gboolean exclusive, REFERENCE_TIME default_period,
|
|
|
|
REFERENCE_TIME min_period, REFERENCE_TIME * ret_period,
|
|
|
|
REFERENCE_TIME * ret_buffer_duration);
|
|
|
|
|
2018-02-14 06:43:36 +00:00
|
|
|
gboolean gst_wasapi_util_initialize_audioclient (GstElement * element,
|
|
|
|
GstAudioRingBufferSpec * spec, IAudioClient * client,
|
|
|
|
WAVEFORMATEX * format, guint sharemode, gboolean low_latency,
|
2018-04-03 19:37:14 +00:00
|
|
|
gboolean loopback, guint * ret_devicep_frames);
|
2018-02-14 06:43:36 +00:00
|
|
|
|
|
|
|
gboolean gst_wasapi_util_initialize_audioclient3 (GstElement * element,
|
|
|
|
GstAudioRingBufferSpec * spec, IAudioClient3 * client,
|
2018-04-03 19:37:14 +00:00
|
|
|
WAVEFORMATEX * format, gboolean low_latency, gboolean loopback,
|
|
|
|
guint * ret_devicep_frames);
|
2018-02-14 06:43:36 +00:00
|
|
|
|
2008-09-30 11:19:10 +00:00
|
|
|
#endif /* __GST_WASAPI_UTIL_H__ */
|