Implement Bounce Range to Trigger

This commit is contained in:
Robin Gareus 2021-12-23 22:33:54 +01:00
parent 83d8560490
commit 541b91d293
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
3 changed files with 68 additions and 20 deletions

View file

@ -2113,10 +2113,16 @@ private:
/* audio export */
enum BounceTarget {
NewSource,
NewTrigger,
ReplaceRange
};
int write_region_selection(RegionSelection&);
bool write_region (std::string path, boost::shared_ptr<ARDOUR::AudioRegion>);
void bounce_region_selection (bool with_processing);
void bounce_range_selection (bool replace, bool enable_processing);
void bounce_range_selection (BounceTarget, bool enable_processing);
void external_edit_region ();
int write_audio_selection (TimeSelection&);