Changeset b49daf6 for examples


Ignore:
Timestamp:
Dec 1, 2004, 1:18:46 AM (19 years ago)
Author:
Paul Brossier <piem@altern.org>
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:
9cba1eb
Parents:
33bf500
Message:

started enabling ladcca support

ladcca still need works, not sure how to avoid the extern client

Location:
examples
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • examples/Makefile.am

    r33bf500 rb49daf6  
    33
    44# global flags
    5 AM_CFLAGS = -I../src
    6 AM_LDFLAGS = -L../src -laubio
     5AM_CFLAGS = -I../src @LADCCA_CFLAGS@
     6AM_LDFLAGS = -L../src @LADCCA_LIBS@ -laubio
    77#AM_SOURCES = utils.c
    88
  • examples/Makefile.in

    r33bf500 rb49daf6  
    156156
    157157# global flags
    158 AM_CFLAGS = -I../src
    159 AM_LDFLAGS = -L../src -laubio
     158AM_CFLAGS = -I../src @LADCCA_CFLAGS@
     159AM_LDFLAGS = -L../src @LADCCA_LIBS@ -laubio
    160160#AM_SOURCES = utils.c
    161161
  • examples/midialsa.c

    r33bf500 rb49daf6  
    33#include "aubio.h"
    44#include <unistd.h>
     5
     6/* not supported yet */
     7#ifdef LADCCA_SUPPORT
     8#include <ladcca/ladcca.h>
     9cca_client_t * aubio_cca_client;
     10#endif /* LADCCA_SUPPORT */
    511
    612int main(int argc, char **argv) {
  • examples/midiparse.c

    r33bf500 rb49daf6  
    2121#include <unistd.h>
    2222
     23/* not supported yet */
     24#ifdef LADCCA_SUPPORT
     25#include <ladcca/ladcca.h>
     26cca_client_t * aubio_cca_client;
     27#endif /* LADCCA_SUPPORT */
     28
    2329int main(int argc, char ** argv) {
    2430#if ALSA_SUPPORT
  • examples/midiplay.c

    r33bf500 rb49daf6  
    2626#include <unistd.h>
    2727
     28/* not supported yet */
     29#ifdef LADCCA_SUPPORT
     30#include <ladcca/ladcca.h>
     31cca_client_t * aubio_cca_client;
     32#endif /* LADCCA_SUPPORT */
     33
    2834int main(int argc, char ** argv) {
    2935#if ALSA_SUPPORT
  • examples/utils.c

    r33bf500 rb49daf6  
    1313#include "utils.h"
    1414
     15/* not supported yet */
    1516#ifdef LADCCA_SUPPORT
    1617#include <ladcca/ladcca.h>
Note: See TracChangeset for help on using the changeset viewer.