Changeset 025d8cd for src/io/ioutils.h
- Timestamp:
- Dec 16, 2016, 1:01:17 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler, yinfft+
- Children:
- 562e908
- Parents:
- 4c65cb8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/ioutils.h
r4c65cb8 r025d8cd 22 22 #define AUBIO_IOUTILS_H 23 23 24 /** \file 25 26 Simple utility functions to validate input parameters. 27 28 */ 29 24 30 #ifdef __cplusplus 25 31 extern "C" { 26 32 #endif 27 33 34 /** validate samplerate 35 36 \param kind the object kind to report on 37 \param path the object properties to report on 38 \param samplerate the object properties to report on 39 \return 0 if ok, non-zero if validation failed 40 41 */ 28 42 uint_t aubio_io_validate_samplerate(const char_t *kind, const char_t *path, 29 43 uint_t samplerate); 30 44 45 /** validate number of channels 46 47 \param kind the object kind to report on 48 \param path the object properties to report on 49 \param channels the object properties to report on 50 \return 0 if ok, non-zero if validation failed 51 52 */ 31 53 uint_t aubio_io_validate_channels(const char_t *kind, const char_t *path, 32 54 uint_t channels);
Note: See TracChangeset
for help on using the changeset viewer.