Changeset 92eea84


Ignore:
Timestamp:
Jul 7, 2006, 10:13:27 AM (18 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:
3f697c9
Parents:
660cad22
Message:

updated tests to lash, avoid signed/unsigned mismatches
updated tests to lash, avoid signed/unsigned mismatches

Location:
examples/tests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • examples/tests/Makefile.am

    r660cad22 r92eea84  
    1 AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/ext @LADCCA_CFLAGS@
    2 AM_LDFLAGS = -L$(top_builddir)/src -L$(top_builddir)/ext -laubioext -laubio @JACK_LIBS@ @LADCCA_LIBS@
     1AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/ext @LASH_CFLAGS@
     2AM_LDFLAGS = -L$(top_builddir)/src -L$(top_builddir)/ext -laubioext -laubio @JACK_LIBS@ @LASH_LIBS@
    33
    44bin_PROGRAMS = \
  • examples/tests/test-phasevoc-jack.c

    r660cad22 r92eea84  
    5858  uint_t i;       /*channels*/
    5959  uint_t j;       /*frames*/
    60   for (j=0;j<nframes;j++) {
     60  for (j=0;j<(unsigned)nframes;j++) {
    6161    for (i=0;i<channels;i++) {
    6262      /* write input to datanew */
Note: See TracChangeset for help on using the changeset viewer.