soundio-sys 0.1.3

Unsafe Rust bindings for libsoundio
Documentation
/*
 * Copyright (c) 2015 Andrew Kelley
 *
 * This file is part of libsoundio, which is MIT licensed.
 * See http://opensource.org/licenses/MIT
 */

#ifndef SOUNDIO_DUMMY_H
#define SOUNDIO_DUMMY_H

#include "soundio_internal.h"
#include "os.h"
#include "ring_buffer.h"
#include "atomics.h"

struct SoundIoPrivate;
int soundio_dummy_init(struct SoundIoPrivate *si);

struct SoundIoDummy {
    struct SoundIoOsMutex *mutex;
    struct SoundIoOsCond *cond;
    bool devices_emitted;
};

struct SoundIoDeviceDummy { int make_the_struct_not_empty; };

struct SoundIoOutStreamDummy {
    struct SoundIoOsThread *thread;
    struct SoundIoOsCond *cond;
    struct SoundIoAtomicFlag abort_flag;
    double period_duration;
    int buffer_frame_count;
    int frames_left;
    int write_frame_count;
    struct SoundIoRingBuffer ring_buffer;
    double playback_start_time;
    struct SoundIoAtomicFlag clear_buffer_flag;
    struct SoundIoAtomicBool pause_requested;
    struct SoundIoChannelArea areas[SOUNDIO_MAX_CHANNELS];
};

struct SoundIoInStreamDummy {
    struct SoundIoOsThread *thread;
    struct SoundIoOsCond *cond;
    struct SoundIoAtomicFlag abort_flag;
    double period_duration;
    int frames_left;
    int read_frame_count;
    int buffer_frame_count;
    struct SoundIoRingBuffer ring_buffer;
    struct SoundIoAtomicBool pause_requested;
    struct SoundIoChannelArea areas[SOUNDIO_MAX_CHANNELS];
};

#endif