2021-05-11 18:29:38 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser 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
|
|
|
|
*/
|
|
|
|
|
2021-05-11 18:31:24 +02:00
|
|
|
#include "wine/list.h"
|
2021-08-12 13:46:35 +02:00
|
|
|
#include "wine/unixlib.h"
|
2021-05-11 18:31:24 +02:00
|
|
|
|
2021-05-24 18:21:56 +02:00
|
|
|
struct pulse_stream;
|
|
|
|
|
2021-05-11 18:30:00 +02:00
|
|
|
struct pulse_config
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
WAVEFORMATEXTENSIBLE format;
|
|
|
|
REFERENCE_TIME def_period;
|
|
|
|
REFERENCE_TIME min_period;
|
|
|
|
} modes[2];
|
|
|
|
unsigned int speakers_mask;
|
|
|
|
};
|
|
|
|
|
2021-05-28 19:05:01 +02:00
|
|
|
struct main_loop_params
|
|
|
|
{
|
|
|
|
HANDLE event;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct create_stream_params
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
EDataFlow dataflow;
|
|
|
|
AUDCLNT_SHAREMODE mode;
|
|
|
|
DWORD flags;
|
|
|
|
REFERENCE_TIME duration;
|
|
|
|
const WAVEFORMATEX *fmt;
|
|
|
|
HRESULT result;
|
|
|
|
UINT32 *channel_count;
|
|
|
|
struct pulse_stream **stream;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct release_stream_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HANDLE timer;
|
|
|
|
HRESULT result;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct start_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct stop_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct reset_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct timer_loop_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct get_render_buffer_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
UINT32 frames;
|
|
|
|
HRESULT result;
|
|
|
|
BYTE **data;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct release_render_buffer_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
UINT32 written_frames;
|
|
|
|
DWORD flags;
|
|
|
|
HRESULT result;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct get_capture_buffer_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
BYTE **data;
|
|
|
|
UINT32 *frames;
|
|
|
|
DWORD *flags;
|
|
|
|
UINT64 *devpos;
|
|
|
|
UINT64 *qpcpos;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct release_capture_buffer_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
BOOL done;
|
|
|
|
HRESULT result;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct get_buffer_size_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
UINT32 *size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct get_latency_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
REFERENCE_TIME *latency;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct get_current_padding_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
UINT32 *padding;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct get_next_packet_size_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
UINT32 *frames;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct get_frequency_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HRESULT result;
|
|
|
|
UINT64 *freq;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct get_position_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
BOOL device;
|
|
|
|
HRESULT result;
|
|
|
|
UINT64 *pos;
|
|
|
|
UINT64 *qpctime;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct set_volumes_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
float master_volume;
|
|
|
|
const float *volumes;
|
|
|
|
const float *session_volumes;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct set_event_handle_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
HANDLE event;
|
|
|
|
HRESULT result;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct test_connect_params
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
HRESULT result;
|
|
|
|
struct pulse_config *config;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct is_started_params
|
|
|
|
{
|
|
|
|
struct pulse_stream *stream;
|
|
|
|
BOOL started;
|
|
|
|
};
|
|
|
|
|
2021-05-28 19:05:17 +02:00
|
|
|
enum unix_funcs
|
|
|
|
{
|
2021-08-10 18:02:39 +02:00
|
|
|
process_attach,
|
|
|
|
process_detach,
|
2021-05-28 19:05:17 +02:00
|
|
|
main_loop,
|
|
|
|
create_stream,
|
|
|
|
release_stream,
|
|
|
|
start,
|
|
|
|
stop,
|
|
|
|
reset,
|
|
|
|
timer_loop,
|
|
|
|
get_render_buffer,
|
|
|
|
release_render_buffer,
|
|
|
|
get_capture_buffer,
|
|
|
|
release_capture_buffer,
|
|
|
|
get_buffer_size,
|
|
|
|
get_latency,
|
|
|
|
get_current_padding,
|
|
|
|
get_next_packet_size,
|
|
|
|
get_frequency,
|
|
|
|
get_position,
|
|
|
|
set_volumes,
|
|
|
|
set_event_handle,
|
|
|
|
test_connect,
|
|
|
|
is_started,
|
2021-05-11 18:29:38 +02:00
|
|
|
};
|