This commit is contained in:
rnlf
2017-01-22 20:23:54 +01:00
parent b954b0ff2d
commit 3c4cb195e0
8 changed files with 82 additions and 36 deletions

View File

@@ -1,11 +1,20 @@
#pragma once
/**
* Copyright (c) 2017 rnlf
*
* 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"
void mixer_init(void);
void mixer_deinit(void);
int16_t const* mixer_getNextBlock(void);
void mixer_play(source_t const *source);
void mixer_mix(void);
#endif