mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +02:00
13 lines
499 B
C
13 lines
499 B
C
/* main.h -- declarations of some command-line functions
|
|
*
|
|
* If VERBOSE is on in some files, some print functions are called.
|
|
* Since these are only appropriate for the command-line interface,
|
|
* there are some print functions declared in main.cpp. main.h
|
|
* declares these functions for use in scorealign.cpp (and maybe others)
|
|
*
|
|
* 14-Jul-08 RBD
|
|
*/
|
|
|
|
void print_path_range(const short *pathx, const short *pathy, int i, int j);
|
|
void print_chroma_table(const float *chrom_energy, int frames);
|