1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
/*
meterec
Console based multi track digital peak meter and recorder for JACK
Copyright (C) 2009-2020 Fabrice Lebas
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <curses.h>
#include <sndfile.h>
#include <jack/jack.h>
#include "position.h"
#include "meterec.h"
#include "conf.h"
void time_sprint(struct time_s * time, char * string) {
sprintf(string, "%u:%02u:%02u.%03u",time->h, time->m, time->s, time->ms);
}
void time_null_sprint(char * string) {
sprintf(string, "-:--:--.---");
}
void time_zero_sprint(char * string) {
sprintf(string, "%u:%02u:%02u.%03u",0, 0, 0, 0);
}
void time_hms(struct time_s * time) {
unsigned int rate = time->rate;
unsigned int frm = time->frm;
time->h = (unsigned int) ( frm / rate ) / 3600;
frm -= time->h * rate * 3600;
time->m = (unsigned int) ((time->frm / rate ) / 60 ) % 60;
frm -= time->m * rate * 60;
time->s = (unsigned int) ( time->frm / rate ) % 60;
frm -= time->s * rate;
time->ms = frm*10000;
time->ms /= rate ;
time->ms += 5;
time->ms /= 10;
time->ms %= 1000;
}
void time_frm(struct time_s * time) {
time->frm = (unsigned int) (
time->h * time->rate * 3600 +
time->m * time->rate * 60 +
time->s * time->rate +
(time->ms * time->rate) / 1000
);
}
void time_init_frm(struct time_s *time, unsigned int rate, unsigned int frames) {
time->rate = rate;
time->frm = frames;
time_hms(time);
}
void time_init_hms(struct time_s *time, unsigned int rate, unsigned int h, unsigned int m, unsigned int s, unsigned int ms) {
time->rate = rate;
time->h = h;
time->m = m;
time->s = s;
time->ms = ms;
time_frm(time);
}
|