shithub: m8c

ref: 13ac56f7c6b78798021ced04345ba042842b8b89
dir: /src/audio.h/

View raw version
// Copyright 2021 Jonne Kokkonen
// Released under the MIT licence, https://opensource.org/licenses/MIT
#ifndef AUDIO_H
#define AUDIO_H

int audio_init(const char *output_device_name, unsigned int audio_buffer_size);
void toggle_audio(const char *output_device_name, unsigned int audio_buffer_size);
void process_audio();
void audio_destroy();

#endif