mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
14 lines
312 B
C
14 lines
312 B
C
#pragma once
|
|
#include "decode.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int sdl_audio_init(void **audio_render, int samplerate, int channels, int format, int buffer);
|
|
void sdl_audio_release(void *audio_render);
|
|
void sdl_audio_set_dec(void *audio_render, decoder *dec);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|