#include "utils_tests.h"
int main (int argc, char **argv)
{
if (argc < 4) {
err = 2;
PRINT_ERR("not enough arguments\n");
PRINT_MSG("usage: %s <input_path> <output_path> <sample_path> [samplerate]\n", argv[0]);
return err;
}
uint_t n_frames = 0, read = 0;
char_t *source_path = argv[1];
char_t *sample_path = argv[3];
if ( argc == 5 ) samplerate = atoi(argv[4]);
do {
if (n_frames / hop_size == 10) {
}
if (n_frames / hop_size == 40) {
}
if (n_frames / hop_size == 70) {
}
if (n_frames > 10.0 * samplerate) {
}
n_frames += read;
} while ( read == hop_size );
return 0;
}