1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-11 07:05:47 +01:00

Update scorealign to SVN r227.

This commit is contained in:
lllucius
2013-11-01 15:59:33 +00:00
parent ce00d5b507
commit e3bea17f16
49 changed files with 1768 additions and 10312 deletions

View File

@@ -0,0 +1,13 @@
class Audio_file_reader : public Audio_reader {
public:
virtual long read(float *data, long n);
snd_node snd;
int bytes_per_frame;
bool open(char *filename, Scorealign &sa, bool verbose);
void close();
snd_type get_snd() { return &snd; }
double Audio_file_reader::get_sample_rate();
long get_frames();
void print_info();
};