Changes in src/io/sink_sndfile.h [0da5208:6f42c16]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink_sndfile.h
r0da5208 r6f42c16 96 96 /** 97 97 98 preset sink format99 100 \param s sink, created with ::new_aubio_sink_sndfile101 \param fmt format of the file to create102 103 \return 0 on success, 1 on error104 105 Preset the format of the sink. Supported format strings:106 - "wav": 16 bit (default)107 - "aiff": aiff, 16 bit108 - "flac": flac, 16 bit109 - "ogg": ogg vorbis stream110 111 Alternatively, any sndfile format can be set by passing the corresponding112 integer as a string:113 114 \code{.c}115 char_t fmt[10];116 snprintf(fmt, sizeof(fmt), "%d", SF_FORMAT_FLAC | SF_FORMAT_PCM_24);117 aubio_sink_sndfile_preset_format(s, fmt);118 \endcode119 120 The file should have been created using a samplerate of 0.121 122 This function should be called before aubio_sink_sndfile_preset_samplerate()123 and aubio_sink_sndfile_preset_channels().124 125 */126 uint_t aubio_sink_sndfile_preset_format(aubio_sink_sndfile_t *s,127 const char_t* fmt);128 129 /**130 131 98 get samplerate of sink object 132 99
Note: See TracChangeset
for help on using the changeset viewer.