- Timestamp:
- Mar 3, 2013, 8:33:36 PM (12 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, pitchshift, sampler, timestretch, yinfft+
- Children:
- f107e12
- Parents:
- 856ceb5
- Location:
- src/io
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink.h
r856ceb5 r4e3723d 22 22 #define _AUBIO_SINK_H 23 23 24 #ifdef __cplusplus25 extern "C" {26 #endif27 28 24 /** \file 29 25 … … 33 29 34 30 */ 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 35 35 36 36 typedef struct _aubio_sink_t aubio_sink_t; -
src/io/sink_apple_audio.h
r856ceb5 r4e3723d 22 22 #define _AUBIO_SINK_APPLE_AUDIO_H 23 23 24 #ifdef __cplusplus25 extern "C" {26 #endif27 28 24 /** \file 29 25 30 26 Apple Audio Media 31 27 28 \example io/test-sink_apple_audio.c 29 32 30 */ 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 33 35 34 36 typedef struct _aubio_sink_apple_audio_t aubio_sink_apple_audio_t; -
src/io/sink_sndfile.h
r856ceb5 r4e3723d 22 22 #define _AUBIO_SINK_SNDFILE_H 23 23 24 #ifdef __cplusplus25 extern "C" {26 #endif27 28 24 /** \file 29 25 30 26 sndfile sink 31 27 28 \example io/test-sink_sndfile.c 29 32 30 */ 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 33 35 34 36 typedef struct _aubio_sink_sndfile_t aubio_sink_sndfile_t; -
src/io/sndfileio.h
r856ceb5 r4e3723d 22 22 #define SNDFILEIO_H 23 23 24 /** @file 25 * sndfile functions 24 /** \file 25 26 sndfile functions 27 26 28 */ 27 29 -
src/io/source.h
r856ceb5 r4e3723d 22 22 #define _AUBIO_SOURCE_H 23 23 24 #ifdef __cplusplus25 extern "C" {26 #endif27 28 24 /** \file 29 25 30 26 Media source 31 27 28 \example io/test-source.c 29 32 30 */ 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 33 35 34 36 typedef struct _aubio_source_t aubio_source_t; -
src/io/source_apple_audio.h
r856ceb5 r4e3723d 22 22 #define _AUBIO_SOURCE_APPLE_AUDIO_H 23 23 24 /** \file 25 26 aubio source using ExtAudioFileRef 27 28 \example io/test-source_apple_audio.c 29 30 */ 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 35 24 36 typedef struct _aubio_source_apple_audio_t aubio_source_apple_audio_t; 25 37 aubio_source_apple_audio_t * new_aubio_source_apple_audio(char_t * path, uint_t samplerate, uint_t block_size); … … 28 40 void del_aubio_source_apple_audio(aubio_source_apple_audio_t * s); 29 41 42 #ifdef __cplusplus 43 } 44 #endif 45 30 46 #endif /* _AUBIO_SOURCE_APPLE_AUDIO_H */ -
src/io/source_sndfile.h
r856ceb5 r4e3723d 22 22 #define _AUBIO_SOURCE_SNDFILE_H 23 23 24 /** \file 25 26 \example io/test-source_sndfile.c 27 28 */ 29 30 #ifdef __cplusplus 31 extern "C" { 32 #endif 33 24 34 typedef struct _aubio_source_sndfile_t aubio_source_sndfile_t; 25 35 aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * path, uint_t samplerate, uint_t block_size); … … 28 38 void del_aubio_source_sndfile(aubio_source_sndfile_t * s); 29 39 40 #ifdef __cplusplus 41 } 42 #endif 43 30 44 #endif /* _AUBIO_SOURCE_SNDFILE_H */
Note: See TracChangeset
for help on using the changeset viewer.