Sound Bakery  v0.1.0
Open-source audio middleware for games
Loading...
Searching...
No Matches
sound_chef_encoder_vorbis.h
1#ifndef SOUND_CHEF_ENCODER_VORBIS
2#define SOUND_CHEF_ENCODER_VORBIS
3
4#include "sound_chef/sound_chef_common.h"
5
6sc_result SC_API sc_encoder_vorbis_on_init(ma_encoder* encoder);
7void SC_API sc_encoder_vorbis_on_uninit(ma_encoder* encoder);
8sc_result SC_API sc_encoder_vorbis_write_pcm_frames(ma_encoder* encoder,
9 const void* framesIn,
10 ma_uint64 frameCount,
11 ma_uint64* framesWritten);
12
13#endif