shithub: aubio

Download patch

ref: 4e3723d3d90422d034d7fb88bbe9467bf9fbfe54
parent: 856ceb599eb9e87b779ff7f18501032b31a313fa
author: Paul Brossier <piem@piem.org>
date: Sun Mar 3 09:33:36 EST 2013

src/io/: add link to examples and missing c++ extern

--- a/src/io/sink.h
+++ b/src/io/sink.h
@@ -21,10 +21,6 @@
 #ifndef _AUBIO_SINK_H
 #define _AUBIO_SINK_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 /** \file
 
   Media sink
@@ -32,6 +28,10 @@
   \example io/test-sink.c
 
 */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 typedef struct _aubio_sink_t aubio_sink_t;
 aubio_sink_t * new_aubio_sink(char_t * uri, uint_t samplerate);
--- a/src/io/sink_apple_audio.h
+++ b/src/io/sink_apple_audio.h
@@ -21,15 +21,17 @@
 #ifndef _AUBIO_SINK_APPLE_AUDIO_H
 #define _AUBIO_SINK_APPLE_AUDIO_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 /** \file
 
   Apple Audio Media
 
+  \example io/test-sink_apple_audio.c
+
 */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 typedef struct _aubio_sink_apple_audio_t aubio_sink_apple_audio_t;
 aubio_sink_apple_audio_t * new_aubio_sink_apple_audio(char_t * method, uint_t samplerate);
--- a/src/io/sink_sndfile.h
+++ b/src/io/sink_sndfile.h
@@ -21,15 +21,17 @@
 #ifndef _AUBIO_SINK_SNDFILE_H
 #define _AUBIO_SINK_SNDFILE_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 /** \file
 
   sndfile sink
 
+  \example io/test-sink_sndfile.c
+
 */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 typedef struct _aubio_sink_sndfile_t aubio_sink_sndfile_t;
 aubio_sink_sndfile_t * new_aubio_sink_sndfile(char_t * method, uint_t samplerate);
--- a/src/io/sndfileio.h
+++ b/src/io/sndfileio.h
@@ -21,8 +21,10 @@
 #ifndef SNDFILEIO_H
 #define SNDFILEIO_H
 
-/** @file 
- * sndfile functions
+/** \file
+
+  sndfile functions
+
  */
 
 #ifdef __cplusplus
--- a/src/io/source.h
+++ b/src/io/source.h
@@ -21,15 +21,17 @@
 #ifndef _AUBIO_SOURCE_H
 #define _AUBIO_SOURCE_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 /** \file
 
   Media source 
 
+  \example io/test-source.c
+
 */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 typedef struct _aubio_source_t aubio_source_t;
 aubio_source_t * new_aubio_source(char_t * uri, uint_t samplerate, uint_t hop_size);
--- a/src/io/source_apple_audio.h
+++ b/src/io/source_apple_audio.h
@@ -21,10 +21,26 @@
 #ifndef _AUBIO_SOURCE_APPLE_AUDIO_H
 #define _AUBIO_SOURCE_APPLE_AUDIO_H
 
+/** \file
+
+  aubio source using ExtAudioFileRef
+
+  \example io/test-source_apple_audio.c
+
+*/
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 typedef struct _aubio_source_apple_audio_t aubio_source_apple_audio_t;
 aubio_source_apple_audio_t * new_aubio_source_apple_audio(char_t * path, uint_t samplerate, uint_t block_size);
 void aubio_source_apple_audio_do(aubio_source_apple_audio_t * s, fvec_t * read_to, uint_t * read);
 uint_t aubio_source_apple_audio_get_samplerate(aubio_source_apple_audio_t * s);
 void del_aubio_source_apple_audio(aubio_source_apple_audio_t * s);
+
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* _AUBIO_SOURCE_APPLE_AUDIO_H */
--- a/src/io/source_sndfile.h
+++ b/src/io/source_sndfile.h
@@ -21,10 +21,24 @@
 #ifndef _AUBIO_SOURCE_SNDFILE_H
 #define _AUBIO_SOURCE_SNDFILE_H
 
+/** \file
+
+  \example io/test-source_sndfile.c
+
+*/
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 typedef struct _aubio_source_sndfile_t aubio_source_sndfile_t;
 aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * path, uint_t samplerate, uint_t block_size);
 void aubio_source_sndfile_do(aubio_source_sndfile_t * s, fvec_t * read_to, uint_t * read);
 uint_t aubio_source_sndfile_get_samplerate(aubio_source_sndfile_t * s);
 void del_aubio_source_sndfile(aubio_source_sndfile_t * s);
+
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* _AUBIO_SOURCE_SNDFILE_H */