From: Paul Brossier Date: Tue, 9 Aug 2005 01:47:24 +0000 (+0000) Subject: changed default parameters baz file-diff examples/utils.c X-Git-Tag: bzr2git~872 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2d7b65afda6887defe131d752af24f0de8551892;p=aubio.git changed default parameters baz file-diff examples/utils.c --- diff --git a/examples/utils.c b/examples/utils.c index 5438353b..e76af4a4 100644 --- a/examples/utils.c +++ b/examples/utils.c @@ -29,12 +29,12 @@ int usedoubled = 1; /* energy,specdiff,hfc,complexdomain,phase */ -aubio_onsetdetection_type type_onset = hfc; +aubio_onsetdetection_type type_onset = kl; aubio_onsetdetection_type type_onset2 = complexdomain; smpl_t threshold = 0.3; smpl_t threshold2 = -90.; -uint_t buffer_size = 1024; -uint_t overlap_size = 512; +uint_t buffer_size = 512; //1024; +uint_t overlap_size = 256; //512; uint_t channels = 1; uint_t samplerate = 44100;