Lines Matching defs:bt

40 int btrack_init(struct btrack * bt, int hop_size, int frame_size, int sample_rate){  in btrack_init()
100 void btrack_del(struct btrack * bt){ in btrack_del()
106 int btrack_beat_due_in_current_frame(const struct btrack * bt){ in btrack_beat_due_in_current_frame()
110 double btrack_get_bpm(const struct btrack * bt){ in btrack_get_bpm()
114 double btrack_get_latest_score(const struct btrack * bt){ in btrack_get_latest_score()
118 double btrack_get_latest_odf(const struct btrack * bt){ in btrack_get_latest_odf()
122 double btrack_get_latest_confidence(const struct btrack * bt){ in btrack_get_latest_confidence()
126 int btrack_get_frames_until_beat(const struct btrack * bt) { in btrack_get_frames_until_beat()
130 double btrack_get_time_until_beat(const struct btrack * bt) { in btrack_get_time_until_beat()
135 void btrack_process_audio_frame(struct btrack * bt, const btrack_chunk_t * frame){ in btrack_process_audio_frame()
140 void btrack_process_fft_frame(struct btrack * bt, const btrack_chunk_t * frame){ in btrack_process_fft_frame()
145 void btrack_process_odf_sample(struct btrack * bt, double odf_sample){ in btrack_process_odf_sample()
184 void btrack_set_bpm(struct btrack * bt, double bpm){ in btrack_set_bpm()
238 void btrack_fix_bpm(struct btrack * bt, double bpm){ in btrack_fix_bpm()
262 void btrack_nofix_bpm(struct btrack * bt){ in btrack_nofix_bpm()
267 void btrack_set_hop_size(struct btrack * bt, int hop_size){ in btrack_set_hop_size()
299 static void resampleOnsetDetectionFunction(struct btrack * bt) { in resampleOnsetDetectionFunction()
332 static void calculateTempo(struct btrack * bt){ in calculateTempo()
437 static void calculateOutputOfCombFilterBank(struct btrack * bt) { in calculateOutputOfCombFilterBank()
510 static void updateCumulativeScore(struct btrack * bt, double odfSample) { in updateCumulativeScore()
559 static void predictBeat(struct btrack * bt){ in predictBeat()