summaryrefslogtreecommitdiff
path: root/shell/audio/sound_output.h
blob: b770fbe416fc15330621fa257ab46a09c5e37eb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SOUND_OUTPUT_H
#define SOUND_OUTPUT_H

#include <stdbool.h>
#include "shared.h"

extern uint32_t Audio_Init();
extern void Audio_Write(int16_t* restrict buffer, uint32_t buffer_size);
extern bool Audio_Underrun_Likely();
extern void Audio_Close();

#endif