19 lines
376 B
C
19 lines
376 B
C
/**
|
|
* Copyright (c) 2017 Florian Kesseler
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify it
|
|
* under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
#ifndef MIXER_H
|
|
#define MIXER_H
|
|
|
|
#include <stdint.h>
|
|
#include "source.h"
|
|
|
|
int16_t const* mixer_getNextBlock(void);
|
|
void mixer_play(source_t const *source);
|
|
void mixer_mix(void);
|
|
|
|
#endif
|