mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2025-01-05 13:05:47 +00:00
c88e79cb7b
See #3
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2015 Andrew Kelley
|
|
*
|
|
* This file is part of libsoundio, which is MIT licensed.
|
|
* See http://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#ifndef SOUNDIO_DUMMY_HPP
|
|
#define SOUNDIO_DUMMY_HPP
|
|
|
|
#include "soundio_private.h"
|
|
#include "os.h"
|
|
#include "atomics.hpp"
|
|
#include "ring_buffer.hpp"
|
|
|
|
int soundio_dummy_init(struct SoundIoPrivate *si);
|
|
|
|
struct SoundIoDummy {
|
|
SoundIoOsMutex *mutex;
|
|
SoundIoOsCond *cond;
|
|
bool devices_emitted;
|
|
};
|
|
|
|
struct SoundIoDeviceDummy { };
|
|
|
|
struct SoundIoOutStreamDummy {
|
|
struct SoundIoOsThread *thread;
|
|
struct SoundIoOsCond *cond;
|
|
atomic_flag abort_flag;
|
|
double period_duration;
|
|
int buffer_frame_count;
|
|
int frames_left;
|
|
int write_frame_count;
|
|
struct SoundIoRingBuffer ring_buffer;
|
|
double playback_start_time;
|
|
atomic_flag clear_buffer_flag;
|
|
SoundIoChannelArea areas[SOUNDIO_MAX_CHANNELS];
|
|
};
|
|
|
|
struct SoundIoInStreamDummy {
|
|
struct SoundIoOsThread *thread;
|
|
struct SoundIoOsCond *cond;
|
|
atomic_flag abort_flag;
|
|
double period_duration;
|
|
int frames_left;
|
|
int read_frame_count;
|
|
int buffer_frame_count;
|
|
struct SoundIoRingBuffer ring_buffer;
|
|
SoundIoChannelArea areas[SOUNDIO_MAX_CHANNELS];
|
|
};
|
|
|
|
#endif
|