1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-09 16:13:41 +02:00
Files
autotools
dox2-src
help
images
include
lib-src
FileDialog
expat
ffmpeg
lame
lib-widget-extra
libflac
libid3tag
libmad
libnyquist
libogg
libscorealign
autotools
compare_transcripts
fft3
scorealign.xcodeproj
test
Makefile.am
Makefile.in
Makefile.linux
Makefile.osx
README.txt
alignfiles.cpp
alignfiles.h
audiofilereader-snd.cpp
audiofilereader-snd.h
audiofilereader.cpp
audiofilereader.h
audioreader.cpp
audioreader.h
changelog.txt
comp_chroma.cpp
comp_chroma.h
compare_transcripts.vcproj
configure
configure.ac
curvefit.cpp
curvefit.h
gen_chroma.cpp
gen_chroma.h
hillclimb.cpp
hillclimb.h
license.txt
main.cpp
main.h
regression.cpp
regression.h
sautils.cpp
sautils.h
score-align.sln
score-align.vcproj
scorealign-vc2010.sln
scorealign-vc2010.vcproj
scorealign.cpp
scorealign.h
scorealign.pc.in
trace.cpp
trace.h
libsndfile
libsoxr
libvamp
libvorbis
lv2
mod-null
mod-nyq-bench
mod-script-pipe
mod-track-panel
portaudio-v19
portburn
portmidi
portmixer
portsmf
sbsms
soundtouch
twolame
Makefile.am
Makefile.in
audacity-patches.txt
dist-libsoxr.mk
dist-libvamp.mk
dist-portaudio.mk
locale
m4
mac
nyquist
plug-ins
presets
qa
scripts
src
tests
win
.gitattributes
.gitignore
.travis.yml
ABOUT-NLS
LICENSE.txt
Makefile.am
Makefile.in
README.txt
audacity.dox
branches.txt
configure
configure.ac
todo.txt
audacity/lib-src/libscorealign/alignfiles.h
2013-11-01 15:59:33 +00:00

19 lines
806 B
C

/* alignfiles.h -- perform alignment given filenames
*
* this module is an intermediate between the command-line interface
* main.cpp and the alignment code in scorealign.cpp. The scorealign.cpp
* module is supposed to work on data from any source, e.g. it could be
* a file, or it could be an object that sucks samples out of an
* Audacity wave track. This module is supposed to not assume a command
* line, type-script based interface, but *does* assume that you want
* to read data from files, so you pass filenames into this module and
* it reads the files and calls scorealign.cpp to do the alignment work.
*
* 14-Jul-08 RBD
*/
bool align_files(const char *infilename1, const char *infilename2,
Scorealign &sa, bool verbose);
bool is_midi_file(const char *filename);