Home
last modified time | relevance | path

Searched refs:bpm_str (Results 1 – 3 of 3) sorted by relevance

/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/src/audio/
H A Dtempo_track.c166 static char * bpm_str = NULL; in tempo_track_get_current_bpm_as_str() local
167 if (bpm_str) in tempo_track_get_current_bpm_as_str()
168 g_free (bpm_str); in tempo_track_get_current_bpm_as_str()
171 bpm_str = g_strdup_printf ("%.2f", bpm); in tempo_track_get_current_bpm_as_str()
173 return bpm_str; in tempo_track_get_current_bpm_as_str()
/dports/audio/rhythmbox/rhythmbox-3.4.4/widgets/
H A Drb-song-info.c1767 const char *bpm_str; in rb_song_info_sync_entry_single() local
1846 bpm_str = gtk_entry_get_text (GTK_ENTRY (dialog->priv->bpm)); in rb_song_info_sync_entry_single()
1847 bpm = g_strtod (bpm_str, &endptr); in rb_song_info_sync_entry_single()
1849 if ((endptr != bpm_str) && (bpm != dentry_val)) { in rb_song_info_sync_entry_single()
/dports/audio/py-eyed3/eyeD3-0.9.6/eyed3/id3/
H A Dtag.py381 bpm_str = self.frame_set[frames.BPM_FID][0].text or "0"
385 bpm = int(Decimal(bpm_str).quantize(1, ROUND_HALF_UP))