ref: 7295650ab38760846505897bd85b150022b9c570
dir: /player/audio_sdl.h/
#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