mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-10 08:33:36 +02:00
Extensive changes to improve NoteTrack display and (some) editing, NoteTrack playback via MIDI, and Midi-to-Audio alignment.
This commit is contained in:
29
lib-src/libscorealign/ScoreAlignParams.h
Normal file
29
lib-src/libscorealign/ScoreAlignParams.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/**********************************************************************
|
||||
|
||||
Audacity: A Digital Audio Editor
|
||||
|
||||
ScoreAlignParams.h
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#ifndef __AUDACITY_SCORE_ALIGN_PARAMS__
|
||||
#define __AUDACITY_SCORE_ALIGN_PARAMS__
|
||||
|
||||
struct ScoreAlignParams {
|
||||
double mFramePeriod;
|
||||
double mWindowSize;
|
||||
double mSilenceThreshold;
|
||||
double mForceFinalAlignment;
|
||||
double mIgnoreSilence;
|
||||
double mPresmoothTime;
|
||||
double mLineTime;
|
||||
double mSmoothTime;
|
||||
// information returned from score alignment:
|
||||
int mStatus; // wxID_OK or not?
|
||||
double mAudioStart;
|
||||
double mAudioEnd;
|
||||
double mMidiStart;
|
||||
double mMidiEnd;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user