Changeset 42c3dc0 for src/tempo/tempo.c


Ignore:
Timestamp:
Nov 2, 2015, 11:06:55 PM (8 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:
810b3b6
Parents:
5f5edc1
Message:

src/tempo/tempo.{c,h}: add _get_period and _get_period_s

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tempo/tempo.c

    r5f5edc1 r42c3dc0  
    226226}
    227227
     228smpl_t aubio_tempo_get_period (aubio_tempo_t *o)
     229{
     230  return aubio_beattracking_get_period (o->bt);
     231}
     232
     233smpl_t aubio_tempo_get_period_s (aubio_tempo_t *o)
     234{
     235  return aubio_beattracking_get_period_s (o->bt);
     236}
     237
    228238smpl_t aubio_tempo_get_confidence(aubio_tempo_t *o) {
    229239  return aubio_beattracking_get_confidence(o->bt);
Note: See TracChangeset for help on using the changeset viewer.