Files
lovedos/src/mixer.h

19 lines
376 B
C
Raw Normal View History

2017-01-22 20:23:54 +01:00
/**
* Copyright (c) 2017 Florian Kesseler
2017-01-22 20:23:54 +01:00
*
* 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
2017-01-22 01:01:24 +01:00
#include <stdint.h>
2017-01-22 19:55:59 +01:00
#include "source.h"
2017-01-22 01:01:24 +01:00
int16_t const* mixer_getNextBlock(void);
2017-01-22 19:55:59 +01:00
void mixer_play(source_t const *source);
2017-01-22 01:01:24 +01:00
void mixer_mix(void);
2017-01-22 20:23:54 +01:00
#endif