aurorafw.audio.sndfile

Undocumented in source.

Members

Aliases

SF_BROADCAST_INFO
alias SF_BROADCAST_INFO = SF_BROADCAST_INFO_VAR!(256)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_STR_FIRST
alias SF_STR_FIRST = SF_STR_TITLE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_STR_LAST
alias SF_STR_LAST = SF_STR_GENRE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SNDFILE
alias SNDFILE = SNDFILE_tag*
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_count_t
alias sf_count_t = long
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_vio_get_filelen
alias sf_vio_get_filelen = sf_count_t function(void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_vio_read
alias sf_vio_read = sf_count_t function(void* ptr, sf_count_t count, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_vio_seek
alias sf_vio_seek = sf_count_t function(sf_count_t offset, int whence, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_vio_tell
alias sf_vio_tell = sf_count_t function(void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_vio_write
alias sf_vio_write = sf_count_t function(const void* ptr, sf_count_t count, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

SFC_GET_LIB_VERSION
anonymousenum SFC_GET_LIB_VERSION
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SFD_DEFAULT_LEVEL
anonymousenum SFD_DEFAULT_LEVEL
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_CHANNEL_MAP_INVALID
anonymousenum SF_CHANNEL_MAP_INVALID
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_ERR_NO_ERROR
anonymousenum SF_ERR_NO_ERROR
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_FALSE
anonymousenum SF_FALSE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_FORMAT_WAV
anonymousenum SF_FORMAT_WAV
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_LOOP_NONE
anonymousenum SF_LOOP_NONE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_SEEK_SET
anonymousenum SF_SEEK_SET
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_STR_TITLE
anonymousenum SF_STR_TITLE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

sf_close
int sf_close(SNDFILE* sndfile)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_command
int sf_command(SNDFILE* sndfile, int command, void* data, int datasize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_error
int sf_error(SNDFILE* sndfile)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_error_number
const(char)* sf_error_number(int errnum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_error_str
int sf_error_str(SNDFILE* sndfile, char* str, size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_format_check
int sf_format_check(SF_INFO* info)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_get_string
const(char)* sf_get_string(SNDFILE* sndfile, int str_type)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_open
SNDFILE* sf_open(char* path, int mode, SF_INFO* sfinfo)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_open_fd
SNDFILE* sf_open_fd(int fd, int mode, SF_INFO* sfinfo, int close_desc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_open_virtual
SNDFILE* sf_open_virtual(SF_VIRTUAL_IO* sfvirtual, int mode, SF_INFO* sfinfo, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_perror
int sf_perror(SNDFILE* sndfile)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_read_double
sf_count_t sf_read_double(SNDFILE* sndfile, double* ptr, sf_count_t items)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_read_float
sf_count_t sf_read_float(SNDFILE* sndfile, float* ptr, sf_count_t items)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_read_int
sf_count_t sf_read_int(SNDFILE* sndfile, int* ptr, sf_count_t items)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_read_raw
sf_count_t sf_read_raw(SNDFILE* sndfile, void* ptr, sf_count_t bytes)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_read_short
sf_count_t sf_read_short(SNDFILE* sndfile, short* ptr, sf_count_t items)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_readf_double
sf_count_t sf_readf_double(SNDFILE* sndfile, double* ptr, sf_count_t frames)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_readf_float
sf_count_t sf_readf_float(SNDFILE* sndfile, float* ptr, sf_count_t frames)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_readf_int
sf_count_t sf_readf_int(SNDFILE* sndfile, int* ptr, sf_count_t frames)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_readf_short
sf_count_t sf_readf_short(SNDFILE* sndfile, short* ptr, sf_count_t frames)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_seek
sf_count_t sf_seek(SNDFILE* sndfile, sf_count_t frames, int whence)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_set_string
int sf_set_string(SNDFILE* sndfile, int str_type, char* str)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_strerror
const(char)* sf_strerror(SNDFILE* sndfile)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_version_string
const(char)* sf_version_string()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_wchar_open
SNDFILE* sf_wchar_open(wchar* wpath, int mode, SF_INFO* sfinfo)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_write_double
sf_count_t sf_write_double(SNDFILE* sndfile, double* ptr, sf_count_t items)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_write_float
sf_count_t sf_write_float(SNDFILE* sndfile, float* ptr, sf_count_t items)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_write_int
sf_count_t sf_write_int(SNDFILE* sndfile, int* ptr, sf_count_t items)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_write_raw
sf_count_t sf_write_raw(SNDFILE* sndfile, void* ptr, sf_count_t bytes)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_write_short
sf_count_t sf_write_short(SNDFILE* sndfile, short* ptr, sf_count_t items)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_write_sync
void sf_write_sync(SNDFILE* sndfile)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_writef_double
sf_count_t sf_writef_double(SNDFILE* sndfile, double* ptr, sf_count_t frames)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_writef_float
sf_count_t sf_writef_float(SNDFILE* sndfile, float* ptr, sf_count_t frames)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_writef_int
sf_count_t sf_writef_int(SNDFILE* sndfile, int* ptr, sf_count_t frames)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
sf_writef_short
sf_count_t sf_writef_short(SNDFILE* sndfile, short* ptr, sf_count_t frames)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Manifest constants

SF_COUNT_MAX
enum SF_COUNT_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SNDFILE_1
enum SNDFILE_1;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

SF_BROADCAST_INFO_VAR
struct SF_BROADCAST_INFO_VAR(size_t coding_hist_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_DITHER_INFO
struct SF_DITHER_INFO
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_EMBED_FILE_INFO
struct SF_EMBED_FILE_INFO
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_FORMAT_INFO
struct SF_FORMAT_INFO
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_INFO
struct SF_INFO
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_INSTRUMENT
struct SF_INSTRUMENT
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_LOOP_INFO
struct SF_LOOP_INFO
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SF_VIRTUAL_IO
struct SF_VIRTUAL_IO
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SNDFILE_tag
struct SNDFILE_tag
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta