Ardour  9.0-rc2-184-gc50547f0a6
ardour/ardour/region.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2000-2017 Paul Davis <paul@linuxaudiosystems.com>
3  * Copyright (C) 2006-2014 David Robillard <d@drobilla.net>
4  * Copyright (C) 2007-2012 Carl Hetherington <carl@carlh.net>
5  * Copyright (C) 2013-2019 Robin Gareus <robin@gareus.org>
6  * Copyright (C) 2015-2017 Nick Mainsbridge <mainsbridge@gmail.com>
7  * Copyright (C) 2018 Ben Loftis <ben@harrisonconsoles.com>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23 
24 #pragma once
25 
26 #include <memory>
27 #include <optional>
28 #include <vector>
29 
30 #include "temporal/domain_swap.h"
31 #include "temporal/timeline.h"
32 #include "temporal/range.h"
33 #include "temporal/tempo.h"
34 
35 #include "pbd/undo.h"
36 #include "pbd/signals.h"
37 #include "ardour/ardour.h"
38 #include "ardour/data_type.h"
39 #include "ardour/automatable.h"
40 #include "ardour/movable.h"
41 #include "ardour/readable.h"
42 #include "ardour/session_object.h"
43 #include "ardour/trimmable.h"
44 #include "ardour/types_convert.h"
45 
46 class XMLNode;
47 
48 namespace PBD {
49  class Progress;
50 }
51 
52 namespace ARDOUR {
53 
54 namespace Properties {
68  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> valid_transients; // used for signal only
80  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> contents; // type doesn't matter here, used for signal only
81  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> region_fx; // type doesn't matter here, used for signal only
82  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> region_fx_changed; // type doesn't matter here, used for signal only
83  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> region_tempo; // type doesn't matter here, used for signal only
84  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> region_meter; // type doesn't matter here, used for signal only
85 };
86 
87 class Playlist;
88 class Filter;
89 class ExportSpecification;
90 class Plugin;
91 class RegionFxPlugin;
92 
96  EditChangesID = 2
97 };
98 
101  InnerSplit = 1, // when splitting a Range, there's left/center/right parts of the split
103  Paste = 4
104 };
105 
107  : public SessionObject
108  , public std::enable_shared_from_this<Region>
109  , public Trimmable
110  , public Movable
112 {
113 public:
114  typedef std::vector<std::shared_ptr<Source> > SourceList;
115  typedef std::list<std::shared_ptr<RegionFxPlugin>> RegionFxList;
116 
117  static void make_property_quarks ();
118 
119  static PBD::Signal<void(std::shared_ptr<RegionList>, const PBD::PropertyChange&)> RegionsPropertyChanged;
120 
121  typedef std::map <PBD::PropertyChange, RegionList> ChangeMap;
122 
123  virtual ~Region();
124 
126  bool set_name (const std::string& str);
127 
128  PBD::PropertyList derive_properties (bool with_times = true, bool with_envelope = false) const;
129 
130  const DataType& data_type () const { return _type; }
134 
142  timepos_t position () const { return _length.val().position(); }
143  timepos_t start () const { return _start.val(); }
144  timecnt_t length () const { return _length.val(); }
145  timepos_t end() const;
146  timepos_t nt_last() const { return end().decrement(); }
147 
148  virtual timecnt_t tail () const { return timecnt_t (0); }
149 
153 
154  samplepos_t position_sample () const { return position().samples(); }
155  samplecnt_t start_sample () const { return _start.val().samples(); }
156  samplecnt_t length_samples () const { return _length.val().samples(); }
157 
158  layer_t layer () const { return _layer; }
159 
160  void set_selected_for_solo(bool yn);
161 
162  timepos_t source_length (uint32_t n) const;
163  uint32_t max_source_level () const;
164 
165  /* these two are valid ONLY during a StateChanged signal handler */
166 
167  timepos_t last_position () const { return _last_length.position(); }
168  timecnt_t last_length () const { return _last_length; }
169 
170  samplecnt_t ancestral_start_sample () const { return _ancestral_start.val().samples(); }
171  samplecnt_t ancestral_length_samples () const { return _ancestral_length.val().samples(); }
172  timepos_t ancestral_start () const { return _ancestral_start.val(); }
173  timecnt_t ancestral_length () const { return _ancestral_length.val(); }
174 
186  {
187  Glib::Threads::Mutex::Lock lm (_operation_rgroup_mutex);
188  if (_retained_group_id == 0) {
189  _retained_take_cnt = 0;
190  ++_next_group_id;
191  _operation_rgroup_map.clear (); // this is used for split & paste operations that honor the region's prior grouping
192  _retained_group_id = _next_group_id << 4; // this is used for newly created regions via recording or importing
193  _clear_on_destruction = true;
194  } else {
195  _clear_on_destruction = false;
196  }
197  }
199  {
200  if (_clear_on_destruction) {
201  Glib::Threads::Mutex::Lock lm (_operation_rgroup_mutex);
202  _retained_group_id = 0;
203  _next_group_id += _retained_take_cnt;
204  _operation_rgroup_map.clear();
205  }
206  }
208  };
209 
210  static uint64_t next_group_id () { return _next_group_id; }
211  static void set_next_group_id (uint64_t ngid) { _next_group_id = ngid; }
212 
213  /* access the retained group-id for actions like Recording, Import.
214  *
215  * Note When a single take creates multiple layered regions (e.g. loop recording)
216  * then the group id need to be bumped for each take
217  */
218  static uint64_t get_retained_group_id (uint64_t take = 0) {
219  _retained_take_cnt = std::max (_retained_take_cnt, take);
220  return _retained_group_id + (take << 4);
221  }
222 
223  /* access the group-id for an operation on a region, honoring the existing region's group status */
224  static uint64_t get_region_operation_group_id (uint64_t old_region_group, RegionOperationFlag flags);
225 
226  uint64_t region_group () const { return _reg_group; }
227  void set_region_group (uint64_t rg, bool explicitly = false) { _reg_group = rg | (explicitly ? Explicit : NoGroup); }
228  void unset_region_group (bool explicitly = false) { _reg_group = (explicitly ? Explicit : NoGroup); }
229 
230  bool is_explicitly_grouped() { return (_reg_group & Explicit) == Explicit; }
231  bool is_implicitly_ungrouped() { return (_reg_group == NoGroup); }
232  bool is_explicitly_ungrouped() { return (_reg_group == Explicit); }
233 
234  float stretch () const { return _stretch; }
235  float shift () const { return _shift; }
236 
237  void set_ancestral_data (timepos_t const & start, timecnt_t const & length, float stretch, float shift);
238 
239  timecnt_t sync_offset (int& dir) const;
241 
243 
244  /* first_sample() is an alias; last_sample() just hides some math */
245 
246  samplepos_t first_sample () const { return position().samples(); }
247  samplepos_t last_sample () const { return first_sample() + length_samples() - 1; }
248 
257 
259  return Temporal::TimeRange (last_position(), last_position() + _last_length);
260  }
261 
263  return Temporal::TimeRange (timepos_t (first_sample()), timepos_t (first_sample() + length_samples()));
264  }
265 
267  return Temporal::TimeRange (position(), position() + length());
268  }
269 
270  bool hidden () const { return _hidden; }
271  bool muted () const { return _muted; }
272  bool opaque () const { return _opaque; }
273  bool locked () const { return _locked; }
274  bool position_locked () const { return _position_locked; }
275  bool video_locked () const { return _video_locked; }
276  bool automatic () const { return _automatic; }
277  bool whole_file () const { return _whole_file; }
278  bool captured () const { return !(_import || _external); }
279  bool can_move () const { return !_position_locked && !_locked; }
280  bool sync_marked () const { return _sync_marked; }
281  bool external () const { return _external; }
282  bool import () const { return _import; }
283 
285 
289 
291 
292  bool covers (samplepos_t sample) const {
293  return first_sample() <= sample && sample <= last_sample();
294  }
295 
296  bool covers (timepos_t const & pos) const {
297  return position() <= pos && pos <= nt_last();
298  }
299 
306  Temporal::OverlapType coverage (timepos_t const & start, timepos_t const & end, bool with_tail = false) const {
307  return Temporal::coverage_exclusive_ends (position(), with_tail ? nt_last() + tail() : nt_last(), start, end);
308  }
309 
310  bool exact_equivalent (std::shared_ptr<const Region>) const;
311  bool size_equivalent (std::shared_ptr<const Region>) const;
312  bool overlap_equivalent (std::shared_ptr<const Region>) const;
313  bool enclosed_equivalent (std::shared_ptr<const Region>) const;
314  bool layer_and_time_equivalent (std::shared_ptr<const Region>) const;
315  bool source_equivalent (std::shared_ptr<const Region>) const;
316  bool any_source_equivalent (std::shared_ptr<const Region>) const;
317  bool uses_source (std::shared_ptr<const Source>, bool shallow = false) const;
318  void deep_sources (std::set<std::shared_ptr<Source> >&) const;
319 
320  std::string source_string () const;
321 
322 
323  /* EDITING OPERATIONS */
324 
325  void set_length (timecnt_t const &);
326  void set_start (timepos_t const &);
327  void set_position (timepos_t const &);
330  virtual void update_after_tempo_map_change (bool send_change = true);
331  void nudge_position (timecnt_t const &);
332 
333  bool at_natural_position () const;
335 
336  void move_start (timecnt_t const & distance);
337  void trim_front (timepos_t const & new_position);
338  void trim_end (timepos_t const & new_position);
339  void trim_to (timepos_t const & pos, timecnt_t const & length);
340 
341  /* fades are inherently audio in nature and we specify them in samples */
342  virtual void fade_range (samplepos_t, samplepos_t) {}
343 
344  void cut_front (timepos_t const & new_position);
345  void cut_end (timepos_t const & new_position);
346 
347  void raise ();
348  void lower ();
349  void raise_to_top ();
351 
352  void set_sync_position (timepos_t const & n);
354  void set_hidden (bool yn);
355  void set_muted (bool yn);
356  void set_whole_file (bool yn);
357  void set_automatic (bool yn);
358  void set_opaque (bool yn);
359  void set_locked (bool yn);
360  void set_video_locked (bool yn);
361  void set_position_locked (bool yn);
362 
363  /* ONLY Playlist can call this */
364  void set_layer (layer_t l);
367  void modify_front_unchecked (timepos_t const & new_position, bool reset_fade);
368  void modify_end_unchecked (timepos_t const & new_position, bool reset_fade);
369 
373  return timepos_t (position().distance (region_beats_to_absolute_time (beats)));
374  }
377  return position().distance (region_beats_to_absolute_time (beats)).beats ();
378  }
381 
384 
387 
390  return timepos_t (position().distance (source_beats_to_absolute_time (beats)));
391  }
394 
396 
398 
399  int apply (Filter &, PBD::Progress* progress = 0);
400 
401  std::shared_ptr<ARDOUR::Playlist> playlist () const { return _playlist.lock(); }
402  virtual void set_playlist (std::weak_ptr<ARDOUR::Playlist>);
403 
404  void source_deleted (std::weak_ptr<Source>);
405 
406  bool is_compound () const;
407 
408  std::shared_ptr<Source> source (uint32_t n=0) const { return _sources[ (n < _sources.size()) ? n : 0 ]; }
409 
410  SourceList& sources_for_edit () { return _sources; }
411  const SourceList& sources () const { return _sources; }
412  const SourceList& master_sources () const { return _master_sources; }
413 
414  std::vector<std::string> master_source_names();
416 
417  /* automation */
418 
419  virtual std::shared_ptr<Evoral::Control>
420  control (const Evoral::Parameter& id, bool create=false) = 0;
421 
422  virtual std::shared_ptr<const Evoral::Control>
423  control (const Evoral::Parameter& id) const = 0;
424 
425  /* tags */
426 
427  std::string tags() const { return _tags; }
428  virtual bool set_tags (const std::string& str) {
429  if (_tags != str) {
430  _tags = str;
431  PropertyChanged (PBD::PropertyChange (Properties::tags));
432  }
433  return true;
434  }
435 
436  /* serialization */
437 
438  XMLNode& get_state () const;
439  virtual int set_state (const XMLNode&, int version);
440 
441  virtual bool do_export (std::string const&) const = 0;
442 
443  virtual std::shared_ptr<Region> get_parent() const;
444 
445  uint64_t layering_index () const { return _layering_index; }
446  void set_layering_index (uint64_t when) { _layering_index = when; }
447 
448  virtual bool is_dependent() const { return false; }
449  virtual bool depends_on (std::shared_ptr<Region> /*other*/) const { return false; }
450 
451  virtual void add_transient (samplepos_t) {
452  // no transients, but its OK
453  }
454 
455  virtual void clear_transients () {
456  // no transients, but its OK
457  }
458 
459  virtual void update_transient (samplepos_t /* old_position */, samplepos_t /* new_position */) {
460  // no transients, but its OK
461  }
462 
463  virtual void remove_transient (samplepos_t /* where */) {
464  // no transients, but its OK
465  }
466 
467  virtual void set_onsets (AnalysisFeatureList&) {
468  // no transients, but its OK
469  }
470 
475 
476  void captured_xruns (XrunPositions&, bool abs = false) const;
477 
485  // no transients, but its OK
486  }
487 
488  /* wrapper to the above for easy access throug Lua */
491  get_transients (rv);
492  return rv;
493  }
494 
495  bool has_transients () const;
496 
497  virtual int separate_by_channel (std::vector< std::shared_ptr<Region> >&) const {
498  return -1;
499  }
500 
502 
503  void drop_sources ();
504 
505  /* Allow to collect RegionsPropertyChanged signal emissions */
506  void set_changemap (ChangeMap* changemap) {
507  _changemap = changemap;
508  }
509 
510  void get_cue_markers (CueMarkers&, bool abs = false) const;
511  void move_cue_marker (CueMarker const &, timepos_t const & region_relative_position);
512  void rename_cue_marker (CueMarker&, std::string const &);
513 
514  /* Region Fx */
515  bool load_plugin (ARDOUR::PluginType type, std::string const& name);
516  bool add_plugin (std::shared_ptr<RegionFxPlugin>, std::shared_ptr<RegionFxPlugin> pos = std::shared_ptr<RegionFxPlugin> ());
517  virtual bool remove_plugin (std::shared_ptr<RegionFxPlugin>) { return false; }
518  virtual void reorder_plugins (RegionFxList const&);
519 
520  bool has_region_fx () const {
521  Glib::Threads::RWLock::ReaderLock lm (_fx_lock);
522  return !_plugins.empty ();
523  }
524 
525  size_t n_region_fx () const {
526  Glib::Threads::RWLock::ReaderLock lm (_fx_lock);
527  return _plugins.size ();
528  }
529 
530  std::shared_ptr<RegionFxPlugin> nth_plugin (uint32_t n) const {
531  Glib::Threads::RWLock::ReaderLock lm (_fx_lock);
532  for (auto const& i : _plugins) {
533  if (0 == n--) {
534  return i;
535  }
536  }
537  return std::shared_ptr<RegionFxPlugin> ();
538  }
539 
540  void foreach_plugin (std::function<void(std::weak_ptr<RegionFxPlugin>)> method) const {
541  Glib::Threads::RWLock::ReaderLock lm (_fx_lock);
542  for (auto const& i : _plugins) {
543  method (std::weak_ptr<RegionFxPlugin> (i));
544  }
545  }
546 
547  std::optional<Temporal::Tempo> tempo() const;
548  void set_tempo (Temporal::Tempo const &);
549  std::optional<Temporal::Meter> meter() const;
550  void set_meter (Temporal::Meter const &);
551 
552  std::shared_ptr<Temporal::TempoMap> tempo_map() const;
553 
554 protected:
555  virtual XMLNode& state () const;
556 
557  friend class RegionFactory;
558 
560  Region (const SourceList& srcs);
561 
563  Region (std::shared_ptr<const Region>);
564 
566  Region (std::shared_ptr<const Region>, timecnt_t const & start_offset);
567 
569  Region (std::shared_ptr<const Region>, const SourceList&);
570 
572  Region (Session& s, timepos_t const & start, timecnt_t const & length, const std::string& name, DataType);
573 
574  virtual bool can_trim_start_before_source_start () const {
575  return false;
576  }
577 
578 protected:
579  virtual bool _add_plugin (std::shared_ptr<RegionFxPlugin>, std::shared_ptr<RegionFxPlugin>, bool) { return false; }
580  virtual void fx_latency_changed (bool no_emit);
581  virtual void fx_tail_changed (bool no_emit);
582 
583  virtual void send_change (const PBD::PropertyChange&);
584  virtual int _set_state (const XMLNode&, int version, PBD::PropertyChange& what_changed, bool send_signal);
585  virtual void set_position_internal (timepos_t const & pos);
587  virtual void set_start_internal (timepos_t const &);
589  void first_edit ();
590  virtual void ensure_length_sanity () {}
591 
592  void override_opaqueness (bool yn) {
593  _opaque = yn;
594  }
595 
596  /* This is always using AudioTime. convenient for evenlopes in AudioRegion */
597  timepos_t len_as_tpos () const { return timepos_t((samplepos_t)_length.val().samples()); }
598 
600 
601  mutable Glib::Threads::RWLock _fx_lock;
602  uint32_t _fx_latency;
603  uint32_t _fx_tail;
605 
614 
618 
619  std::weak_ptr<ARDOUR::Playlist> _playlist;
620 
622 
623  AnalysisFeatureList _onsets; // used by the Ferret (Aubio OnsetDetector)
624 
625  // _transient_user_start is covered by _valid_transients
627  samplepos_t _transient_user_start; // region's _start relative to user_transients
628 
629  // these are used by Playlist::find_next_transient() in absence of onsets
630  AnalysisFeatureList _transients; // Source Analysis (QM Transient), user read-only
633 
635 
636 private:
638 
640 
641  void maybe_uncopy ();
643 
644  bool verify_start (timepos_t const &);
646 
647  virtual void recompute_at_start () = 0;
648  virtual void recompute_at_end () = 0;
649 
667  PBD::Property<bool> _contents; // type is irrelevant
668 
672 
674 
676 
677  void use_sources (SourceList const &);
678 
679  enum RegionGroupFlags : uint64_t {
680  NoGroup = 0x0, // no flag: implicitly grouped if the id is nonzero; or implicitly 'un-grouped' if the group-id is zero
681  Explicit = 0x1, // the user has explicitly grouped or ungrouped this region. explicitly grouped regions can cross track-group boundaries
682  };
683  static uint64_t _retained_group_id;
684  static uint64_t _retained_take_cnt;
685  static uint64_t _next_group_id;
686 
687  static Glib::Threads::Mutex _operation_rgroup_mutex;
688  static std::map<uint64_t, uint64_t> _operation_rgroup_map;
689 
690  std::atomic<int> _source_deleted;
691  Glib::Threads::Mutex _source_list_lock;
693 };
694 
695 } /* namespace ARDOUR */
696 
Temporal::timepos_t source_beats_to_region_time(Temporal::Beats beats) const
void trim_front(timepos_t const &new_position)
void lower_to_bottom()
bool exact_equivalent(std::shared_ptr< const Region >) const
void set_hidden(bool yn)
timepos_t sync_position() const
void set_region_group(uint64_t rg, bool explicitly=false)
AnalysisFeatureList _user_transients
void use_sources(SourceList const &)
virtual timecnt_t tail() const
virtual void ensure_length_sanity()
void set_position_unchecked(timepos_t const &)
static uint64_t get_retained_group_id(uint64_t take=0)
bool covers(samplepos_t sample) const
void set_master_sources(const SourceList &)
samplepos_t first_sample() const
Temporal::Beats region_beats_to_source_beats(Temporal::Beats beats) const
void merge_features(AnalysisFeatureList &, const AnalysisFeatureList &, const sampleoffset_t) const
Temporal::Beats source_beats_to_absolute_beats(Temporal::Beats beats) const
timecnt_t ancestral_length() const
virtual void set_playlist(std::weak_ptr< ARDOUR::Playlist >)
timepos_t earliest_possible_position() const
PBD::Property< bool > _import
PBD::Property< bool > _opaque
void set_layering_index(uint64_t when)
std::weak_ptr< ARDOUR::Playlist > _playlist
virtual void remove_transient(samplepos_t)
Temporal::timepos_t region_beats_to_region_time(Temporal::Beats beats) const
std::shared_ptr< Source > source(uint32_t n=0) const
virtual void add_transient(samplepos_t)
virtual void recompute_at_end()=0
static uint64_t next_group_id()
void suspend_property_changes()
void set_meter(Temporal::Meter const &)
timepos_t last_position() const
void transients(AnalysisFeatureList &)
virtual int _set_state(const XMLNode &, int version, PBD::PropertyChange &what_changed, bool send_signal)
virtual void update_after_tempo_map_change(bool send_change=true)
virtual void update_transient(samplepos_t, samplepos_t)
float stretch() const
Temporal::timepos_t absolute_time_to_region_time(Temporal::timepos_t const &) const
PBD::Property< bool > _valid_transients
void foreach_plugin(std::function< void(std::weak_ptr< RegionFxPlugin >)> method) const
void set_whole_file(bool yn)
samplecnt_t length_samples() const
Region(Session &s, timepos_t const &start, timecnt_t const &length, const std::string &name, DataType)
Temporal::timepos_t source_beats_to_absolute_time(Temporal::Beats beats) const
void finish_domain_bounce(Temporal::DomainBounceInfo &)
bool source_equivalent(std::shared_ptr< const Region >) const
void trim_end(timepos_t const &new_position)
virtual bool can_trim_start_before_source_start() const
bool at_natural_position() const
virtual void clear_transients()
void set_initial_position(timepos_t const &)
PBD::Property< timepos_t > _start
void set_automatic(bool yn)
virtual bool depends_on(std::shared_ptr< Region >) const
Region(std::shared_ptr< const Region >)
bool size_equivalent(std::shared_ptr< const Region >) const
void get_cue_markers(CueMarkers &, bool abs=false) const
samplecnt_t start_sample() const
virtual bool do_export(std::string const &) const =0
void set_length_internal(timecnt_t const &)
std::shared_ptr< RegionFxPlugin > nth_plugin(uint32_t n) const
uint32_t max_source_level() const
PBD::Property< float > _stretch
bool set_name(const std::string &str)
std::shared_ptr< Temporal::TempoMap > tempo_map() const
PBD::Property< bool > _sync_marked
bool has_transients() const
bool enclosed_equivalent(std::shared_ptr< const Region >) const
PBD::Property< bool > _hidden
static uint64_t _retained_take_cnt
bool verify_start(timepos_t const &)
void trim_to(timepos_t const &pos, timecnt_t const &length)
static std::map< uint64_t, uint64_t > _operation_rgroup_map
virtual bool _add_plugin(std::shared_ptr< RegionFxPlugin >, std::shared_ptr< RegionFxPlugin >, bool)
timepos_t adjust_to_sync(timepos_t const &) const
samplecnt_t ancestral_start_sample() const
virtual std::shared_ptr< const Evoral::Control > control(const Evoral::Parameter &id) const =0
Region(std::shared_ptr< const Region >, timecnt_t const &start_offset)
void maybe_invalidate_transients()
static uint64_t _retained_group_id
void set_position_locked(bool yn)
virtual void fx_tail_changed(bool no_emit)
timepos_t start() const
std::atomic< int > _source_deleted
timecnt_t sync_offset(int &dir) const
void move_cue_marker(CueMarker const &, timepos_t const &region_relative_position)
void drop_sources()
timepos_t source_length(uint32_t n) const
void set_position(timepos_t const &)
virtual void fx_latency_changed(bool no_emit)
AnalysisFeatureList _transients
Temporal::OverlapType coverage(timepos_t const &start, timepos_t const &end, bool with_tail=false) const
bool has_region_fx() const
void set_length_unchecked(timecnt_t const &)
void clear_sync_position()
PBD::Property< float > _shift
bool whole_file() const
void trim_to_internal(timepos_t const &position, timecnt_t const &length)
PBD::Property< timepos_t > _ancestral_start
virtual std::shared_ptr< Region > get_parent() const
static uint64_t _next_group_id
std::optional< Temporal::Tempo > tempo() const
uint64_t layering_index() const
void set_start(timepos_t const &)
void modify_end_unchecked(timepos_t const &new_position, bool reset_fade)
std::vector< std::string > master_source_names()
uint64_t region_group() const
Temporal::TimeRange range() const
std::shared_ptr< ARDOUR::Playlist > playlist() const
Temporal::Beats absolute_time_to_soucre_beats(Temporal::timepos_t const &) const
bool sync_marked() const
void set_sync_position(timepos_t const &n)
timepos_t source_position() const
virtual int set_state(const XMLNode &, int version)
bool automatic() const
void override_opaqueness(bool yn)
virtual void fade_range(samplepos_t, samplepos_t)
Temporal::TimeDomain position_time_domain() const
bool uses_source(std::shared_ptr< const Source >, bool shallow=false) const
virtual ~Region()
static void make_property_quarks()
void set_layer(layer_t l)
void set_locked(bool yn)
XMLNode & get_state() const
PBD::Property< bool > _left_of_split
Glib::Threads::RWLock _fx_lock
bool load_plugin(ARDOUR::PluginType type, std::string const &name)
samplepos_t position_sample() const
timecnt_t last_length() const
static void set_next_group_id(uint64_t ngid)
void special_set_position(timepos_t const &)
AnalysisFeatureList _onsets
virtual bool remove_plugin(std::shared_ptr< RegionFxPlugin >)
timecnt_t source_relative_position(Temporal::timepos_t const &) const
bool verify_length(timecnt_t &)
timecnt_t length() const
void deep_sources(std::set< std::shared_ptr< Source > > &) const
PBD::ScopedConnectionList _source_deleted_connections
PBD::Property< timepos_t > _sync_position
void set_changemap(ChangeMap *changemap)
void set_video_locked(bool yn)
void set_length(timecnt_t const &)
PBD::Property< bool > _locked
virtual bool is_dependent() const
timepos_t end() const
std::map< PBD::PropertyChange, RegionList > ChangeMap
PBD::PropertyList derive_properties(bool with_times=true, bool with_envelope=false) const
std::string tags() const
PBD::Property< bool > _right_of_split
static PBD::Signal< void(std::shared_ptr< RegionList >, const PBD::PropertyChange &)> RegionsPropertyChanged
void set_selected_for_solo(bool yn)
const SourceList & sources() const
void mid_thaw(const PBD::PropertyChange &)
samplepos_t _transient_user_start
virtual void reorder_plugins(RegionFxList const &)
void register_properties()
virtual std::shared_ptr< Evoral::Control > control(const Evoral::Parameter &id, bool create=false)=0
PBD::Property< bool > _video_locked
virtual void send_change(const PBD::PropertyChange &)
void recompute_position_from_time_domain()
PBD::Property< bool > _contents
virtual bool set_tags(const std::string &str)
size_t n_region_fx() const
void set_muted(bool yn)
void rename_cue_marker(CueMarker &, std::string const &)
AnalysisFeatureList transients()
virtual void recompute_at_start()=0
timecnt_t region_relative_position(Temporal::timepos_t const &) const
void unset_region_group(bool explicitly=false)
bool add_plugin(std::shared_ptr< RegionFxPlugin >, std::shared_ptr< RegionFxPlugin > pos=std::shared_ptr< RegionFxPlugin >())
virtual int separate_by_channel(std::vector< std::shared_ptr< Region > > &) const
std::optional< Temporal::Meter > meter() const
Region(const SourceList &srcs)
timepos_t len_as_tpos() const
samplepos_t _transient_analysis_end
samplepos_t last_sample() const
samplepos_t _transient_analysis_start
timepos_t position() const
static uint64_t get_region_operation_group_id(uint64_t old_region_group, RegionOperationFlag flags)
Trimmable::CanTrim can_trim() const
bool covers(timepos_t const &pos) const
PBD::Property< timecnt_t > _length
std::string source_string() const
void cut_front(timepos_t const &new_position)
PBD::Property< uint64_t > _layering_index
PBD::Property< bool > _position_locked
SourceList & sources_for_edit()
timepos_t ancestral_start() const
PBD::Property< timecnt_t > _ancestral_length
bool layer_and_time_equivalent(std::shared_ptr< const Region >) const
PBD::Property< bool > _whole_file
void nudge_position(timecnt_t const &)
void source_deleted(std::weak_ptr< Source >)
const DataType & data_type() const
SourceList _master_sources
void move_start(timecnt_t const &distance)
void start_domain_bounce(Temporal::DomainBounceInfo &)
bool any_source_equivalent(std::shared_ptr< const Region >) const
virtual void set_onsets(AnalysisFeatureList &)
std::list< std::shared_ptr< RegionFxPlugin > > RegionFxList
Temporal::TimeRange last_range() const
timepos_t nt_last() const
bool video_locked() const
bool verify_start_and_length(timepos_t const &, timecnt_t &)
virtual void get_transients(AnalysisFeatureList &)
Region(std::shared_ptr< const Region >, const SourceList &)
static Glib::Threads::Mutex _operation_rgroup_mutex
void raise_to_top()
void set_ancestral_data(timepos_t const &start, timecnt_t const &length, float stretch, float shift)
void captured_xruns(XrunPositions &, bool abs=false) const
samplepos_t latest_possible_sample() const
void set_tempo(Temporal::Tempo const &)
RegionEditState _first_edit
Temporal::TimeDomain time_domain() const
PBD::Property< bool > _automatic
virtual XMLNode & state() const
const SourceList & master_sources() const
layer_t layer() const
void move_to_natural_position()
PBD::Property< std::string > _tags
Temporal::timepos_t region_beats_to_absolute_time(Temporal::Beats beats) const
void cut_end(timepos_t const &new_position)
samplecnt_t ancestral_length_samples() const
bool is_compound() const
void set_position_time_domain(Temporal::TimeDomain ps)
Glib::Threads::Mutex _source_list_lock
void modify_front_unchecked(timepos_t const &new_position, bool reset_fade)
int apply(Filter &, PBD::Progress *progress=0)
virtual void set_position_internal(timepos_t const &pos)
void subscribe_to_source_drop()
bool overlap_equivalent(std::shared_ptr< const Region >) const
PBD::Property< bool > _external
virtual void set_start_internal(timepos_t const &)
Temporal::Beats region_distance_to_region_beats(Temporal::timecnt_t const &) const
std::vector< std::shared_ptr< Source > > SourceList
Temporal::TimeRange range_samples() const
PBD::Property< uint64_t > _reg_group
Temporal::Beats absolute_time_to_source_beats(Temporal::timepos_t const &) const
void set_opaque(bool yn)
PBD::Property< bool > _muted
void maybe_uncopy()
bool position_locked() const
timepos_t decrement() const
Definition: timeline.h:192
Definition: xml++.h:114
int64_t val() const
Definition: int62.h:70
GtkImageIconNameData name
Definition: gtkimage.h:6
#define LIBARDOUR_API
PBD::PropertyDescriptor< bool > hidden
PBD::PropertyDescriptor< uint64_t > layering_index
PBD::PropertyDescriptor< bool > contents
PBD::PropertyDescriptor< bool > region_meter
PBD::PropertyDescriptor< bool > valid_transients
PBD::PropertyDescriptor< timepos_t > sync_position
PBD::PropertyDescriptor< bool > left_of_split
PBD::PropertyDescriptor< bool > external
PBD::PropertyDescriptor< bool > region_tempo
PBD::PropertyDescriptor< float > stretch
PBD::PropertyDescriptor< bool > sync_marked
PBD::PropertyDescriptor< bool > position_locked
PBD::PropertyDescriptor< timecnt_t > length
PBD::PropertyDescriptor< bool > muted
PBD::PropertyDescriptor< bool > region_fx
PBD::PropertyDescriptor< bool > whole_file
PBD::PropertyDescriptor< uint64_t > reg_group
PBD::PropertyDescriptor< bool > region_fx_changed
PBD::PropertyDescriptor< timepos_t > ancestral_start
PBD::PropertyDescriptor< bool > automatic
PBD::PropertyDescriptor< timepos_t > start
PBD::PropertyDescriptor< bool > opaque
PBD::PropertyDescriptor< bool > locked
PBD::PropertyDescriptor< bool > video_locked
PBD::PropertyDescriptor< bool > right_of_split
PBD::PropertyDescriptor< layer_t > layer
PBD::PropertyDescriptor< timecnt_t > ancestral_length
PBD::PropertyDescriptor< float > shift
PBD::PropertyDescriptor< std::string > tags
std::list< samplepos_t > AnalysisFeatureList
std::set< CueMarker > CueMarkers
Temporal::samplecnt_t samplecnt_t
std::vector< samplepos_t > XrunPositions
Temporal::timecnt_t timecnt_t
Temporal::timepos_t timepos_t
Temporal::sampleoffset_t sampleoffset_t
Temporal::samplepos_t samplepos_t
uint32_t layer_t
DebugBits Properties
Definition: axis_view.h:42
OverlapType coverage_exclusive_ends(T sa, T eaE, T sb, T ebE)