Ignore:
Timestamp:
Dec 7, 2013, 4:09:00 AM (10 years ago)
Author:
Paul Brossier <piem@piem.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:
3da8187
Parents:
44e94f3c
Message:

examples/: large refactoring, improve option management, remove old stuff, move blocking logic to jackio

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/parse_args.h

    r44e94f3c r466dff3  
    11/*
    2   Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
     2  Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org>
    33
    44  This file is part of aubio.
     
    2727extern uint_t samplerate;
    2828extern uint_t buffer_size;
    29 extern uint_t overlap_size;
     29extern uint_t hop_size;
    3030// onset stuff
    3131extern char_t * onset_method;
     
    4848
    4949// internal stuff
    50 extern int frames;
     50extern int blocks;
    5151
    5252extern fvec_t *ibuf;
     
    156156        break;
    157157      case 'H':
    158         overlap_size = atoi (optarg);
     158        hop_size = atoi (optarg);
    159159        break;
    160160      case 'O':                /*onset type */
Note: See TracChangeset for help on using the changeset viewer.