Ardour  8.7-14-g57a6773833
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 #ifndef __ardour_region_h__
25 #define __ardour_region_h__
26 
27 #include <memory>
28 #include <vector>
29 
30 #include "temporal/domain_swap.h"
31 #include "temporal/timeline.h"
32 #include "temporal/range.h"
33 
34 #include "pbd/undo.h"
35 #include "pbd/signals.h"
36 #include "ardour/ardour.h"
37 #include "ardour/data_type.h"
38 #include "ardour/automatable.h"
39 #include "ardour/movable.h"
40 #include "ardour/readable.h"
41 #include "ardour/session_object.h"
42 #include "ardour/trimmable.h"
43 #include "ardour/types_convert.h"
44 
45 class XMLNode;
46 
47 namespace PBD {
48  class Progress;
49 }
50 
51 namespace ARDOUR {
52 
53 namespace Properties {
67  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> valid_transients; // used for signal only
79  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> contents; // type doesn't matter here, used for signal only
80  LIBARDOUR_API extern PBD::PropertyDescriptor<bool> region_fx; // type doesn't matter here, used for signal only
81 };
82 
83 class Playlist;
84 class Filter;
85 class ExportSpecification;
86 class Plugin;
87 class RegionFxPlugin;
88 
92  EditChangesID = 2
93 };
94 
97  InnerSplit = 1, // when splitting a Range, there's left/center/right parts of the split
99  Paste = 4
100 };
101 
103  : public SessionObject
104  , public std::enable_shared_from_this<Region>
105  , public Trimmable
106  , public Movable
108 {
109 public:
110  typedef std::vector<std::shared_ptr<Source> > SourceList;
111  typedef std::list<std::shared_ptr<RegionFxPlugin>> RegionFxList;
112 
113  static void make_property_quarks ();
114 
115  static PBD::Signal2<void,std::shared_ptr<RegionList>, const PBD::PropertyChange&> RegionsPropertyChanged;
116 
117  PBD::Signal0<void> RegionFxChanged;
118 
119  typedef std::map <PBD::PropertyChange, RegionList> ChangeMap;
120 
121  virtual ~Region();
122 
124  bool set_name (const std::string& str);
125 
126  PBD::PropertyList derive_properties (bool with_times = true, bool with_envelope = false) const;
127 
128  const DataType& data_type () const { return _type; }
132 
140  timepos_t position () const { return _length.val().position(); }
141  timepos_t start () const { return _start.val(); }
142  timecnt_t length () const { return _length.val(); }
143  timepos_t end() const;
144  timepos_t nt_last() const { return end().decrement(); }
145 
146  virtual timecnt_t tail () const { return timecnt_t (0); }
147 
151 
152  samplepos_t position_sample () const { return position().samples(); }
153  samplecnt_t start_sample () const { return _start.val().samples(); }
154  samplecnt_t length_samples () const { return _length.val().samples(); }
155 
156  layer_t layer () const { return _layer; }
157 
158  void set_selected_for_solo(bool yn);
159 
160  timepos_t source_length (uint32_t n) const;
161  uint32_t max_source_level () const;
162 
163  /* these two are valid ONLY during a StateChanged signal handler */
164 
165  timepos_t last_position () const { return _last_length.position(); }
166  timecnt_t last_length () const { return _last_length; }
167 
168  samplecnt_t ancestral_start_sample () const { return _ancestral_start.val().samples(); }
169  samplecnt_t ancestral_length_samples () const { return _ancestral_length.val().samples(); }
170  timepos_t ancestral_start () const { return _ancestral_start.val(); }
171  timecnt_t ancestral_length () const { return _ancestral_length.val(); }
172 
184  {
185  Glib::Threads::Mutex::Lock lm (_operation_rgroup_mutex);
186  if (_retained_group_id == 0) {
187  _retained_take_cnt = 0;
188  ++_next_group_id;
189  _operation_rgroup_map.clear (); // this is used for split & paste operations that honor the region's prior grouping
190  _retained_group_id = _next_group_id << 4; // this is used for newly created regions via recording or importing
191  _clear_on_destruction = true;
192  } else {
193  _clear_on_destruction = false;
194  }
195  }
197  {
198  if (_clear_on_destruction) {
199  Glib::Threads::Mutex::Lock lm (_operation_rgroup_mutex);
200  _retained_group_id = 0;
201  _next_group_id += _retained_take_cnt;
202  _operation_rgroup_map.clear();
203  }
204  }
206  };
207 
208  static uint64_t next_group_id () { return _next_group_id; }
209  static void set_next_group_id (uint64_t ngid) { _next_group_id = ngid; }
210 
211  /* access the retained group-id for actions like Recording, Import.
212  *
213  * Note When a single take creates multiple layered regions (e.g. loop recording)
214  * then the group id need to be bumped for each take
215  */
216  static uint64_t get_retained_group_id (uint64_t take = 0) {
217  _retained_take_cnt = std::max (_retained_take_cnt, take);
218  return _retained_group_id + (take << 4);
219  }
220 
221  /* access the group-id for an operation on a region, honoring the existing region's group status */
222  static uint64_t get_region_operation_group_id (uint64_t old_region_group, RegionOperationFlag flags);
223 
224  uint64_t region_group () const { return _reg_group; }
225  void set_region_group (uint64_t rg, bool explicitly = false) { _reg_group = rg | (explicitly ? Explicit : NoGroup); }
226  void unset_region_group (bool explicitly = false) { _reg_group = (explicitly ? Explicit : NoGroup); }
227 
228  bool is_explicitly_grouped() { return (_reg_group & Explicit) == Explicit; }
229  bool is_implicitly_ungrouped() { return (_reg_group == NoGroup); }
230  bool is_explicitly_ungrouped() { return (_reg_group == Explicit); }
231 
232  float stretch () const { return _stretch; }
233  float shift () const { return _shift; }
234 
235  void set_ancestral_data (timepos_t const & start, timecnt_t const & length, float stretch, float shift);
236 
237  timecnt_t sync_offset (int& dir) const;
239 
241 
242  /* first_sample() is an alias; last_sample() just hides some math */
243 
244  samplepos_t first_sample () const { return position().samples(); }
245  samplepos_t last_sample () const { return first_sample() + length_samples() - 1; }
246 
255 
257  return Temporal::TimeRange (last_position(), last_position() + _last_length);
258  }
259 
261  return Temporal::TimeRange (timepos_t (first_sample()), timepos_t (first_sample() + length_samples()));
262  }
263 
265  return Temporal::TimeRange (position(), position() + length());
266  }
267 
268  bool hidden () const { return _hidden; }
269  bool muted () const { return _muted; }
270  bool opaque () const { return _opaque; }
271  bool locked () const { return _locked; }
272  bool position_locked () const { return _position_locked; }
273  bool video_locked () const { return _video_locked; }
274  bool automatic () const { return _automatic; }
275  bool whole_file () const { return _whole_file; }
276  bool captured () const { return !(_import || _external); }
277  bool can_move () const { return !_position_locked && !_locked; }
278  bool sync_marked () const { return _sync_marked; }
279  bool external () const { return _external; }
280  bool import () const { return _import; }
281 
283 
287 
289 
290  bool covers (samplepos_t sample) const {
291  return first_sample() <= sample && sample <= last_sample();
292  }
293 
294  bool covers (timepos_t const & pos) const {
295  return position() <= pos && pos <= nt_last();
296  }
297 
304  Temporal::OverlapType coverage (timepos_t const & start, timepos_t const & end, bool with_tail = false) const {
305  return Temporal::coverage_exclusive_ends (position(), with_tail ? nt_last() + tail() : nt_last(), start, end);
306  }
307 
308  bool exact_equivalent (std::shared_ptr<const Region>) const;
309  bool size_equivalent (std::shared_ptr<const Region>) const;
310  bool overlap_equivalent (std::shared_ptr<const Region>) const;
311  bool enclosed_equivalent (std::shared_ptr<const Region>) const;
312  bool layer_and_time_equivalent (std::shared_ptr<const Region>) const;
313  bool source_equivalent (std::shared_ptr<const Region>) const;
314  bool any_source_equivalent (std::shared_ptr<const Region>) const;
315  bool uses_source (std::shared_ptr<const Source>, bool shallow = false) const;
316  void deep_sources (std::set<std::shared_ptr<Source> >&) const;
317 
318  std::string source_string () const;
319 
320 
321  /* EDITING OPERATIONS */
322 
323  void set_length (timecnt_t const &);
324  void set_start (timepos_t const &);
325  void set_position (timepos_t const &);
328  virtual void update_after_tempo_map_change (bool send_change = true);
329  void nudge_position (timecnt_t const &);
330 
331  bool at_natural_position () const;
333 
334  void move_start (timecnt_t const & distance);
335  void trim_front (timepos_t const & new_position);
336  void trim_end (timepos_t const & new_position);
337  void trim_to (timepos_t const & pos, timecnt_t const & length);
338 
339  /* fades are inherently audio in nature and we specify them in samples */
340  virtual void fade_range (samplepos_t, samplepos_t) {}
341 
342  void cut_front (timepos_t const & new_position);
343  void cut_end (timepos_t const & new_position);
344 
345  void raise ();
346  void lower ();
347  void raise_to_top ();
349 
350  void set_sync_position (timepos_t const & n);
352  void set_hidden (bool yn);
353  void set_muted (bool yn);
354  void set_whole_file (bool yn);
355  void set_automatic (bool yn);
356  void set_opaque (bool yn);
357  void set_locked (bool yn);
358  void set_video_locked (bool yn);
359  void set_position_locked (bool yn);
360 
361  /* ONLY Playlist can call this */
362  void set_layer (layer_t l);
365  void modify_front_unchecked (timepos_t const & new_position, bool reset_fade);
366  void modify_end_unchecked (timepos_t const & new_position, bool reset_fade);
367 
371  return timepos_t (position().distance (region_beats_to_absolute_time (beats)));
372  }
375  return position().distance (region_beats_to_absolute_time (beats)).beats ();
376  }
379 
382 
385 
388  return timepos_t (position().distance (source_beats_to_absolute_time (beats)));
389  }
392 
394 
396 
397  int apply (Filter &, PBD::Progress* progress = 0);
398 
399  std::shared_ptr<ARDOUR::Playlist> playlist () const { return _playlist.lock(); }
400  virtual void set_playlist (std::weak_ptr<ARDOUR::Playlist>);
401 
402  void source_deleted (std::weak_ptr<Source>);
403 
404  bool is_compound () const;
405 
406  std::shared_ptr<Source> source (uint32_t n=0) const { return _sources[ (n < _sources.size()) ? n : 0 ]; }
407 
408  SourceList& sources_for_edit () { return _sources; }
409  const SourceList& sources () const { return _sources; }
410  const SourceList& master_sources () const { return _master_sources; }
411 
412  std::vector<std::string> master_source_names();
414 
415  /* automation */
416 
417  virtual std::shared_ptr<Evoral::Control>
418  control (const Evoral::Parameter& id, bool create=false) = 0;
419 
420  virtual std::shared_ptr<const Evoral::Control>
421  control (const Evoral::Parameter& id) const = 0;
422 
423  /* tags */
424 
425  std::string tags() const { return _tags; }
426  virtual bool set_tags (const std::string& str) {
427  if (_tags != str) {
428  _tags = str;
429  PropertyChanged (PBD::PropertyChange (Properties::tags));
430  }
431  return true;
432  }
433 
434  /* serialization */
435 
436  XMLNode& get_state () const;
437  virtual int set_state (const XMLNode&, int version);
438 
439  virtual bool do_export (std::string const&) const = 0;
440 
441  virtual std::shared_ptr<Region> get_parent() const;
442 
443  uint64_t layering_index () const { return _layering_index; }
444  void set_layering_index (uint64_t when) { _layering_index = when; }
445 
446  virtual bool is_dependent() const { return false; }
447  virtual bool depends_on (std::shared_ptr<Region> /*other*/) const { return false; }
448 
449  virtual void add_transient (samplepos_t) {
450  // no transients, but its OK
451  }
452 
453  virtual void clear_transients () {
454  // no transients, but its OK
455  }
456 
457  virtual void update_transient (samplepos_t /* old_position */, samplepos_t /* new_position */) {
458  // no transients, but its OK
459  }
460 
461  virtual void remove_transient (samplepos_t /* where */) {
462  // no transients, but its OK
463  }
464 
465  virtual void set_onsets (AnalysisFeatureList&) {
466  // no transients, but its OK
467  }
468 
473 
474  void captured_xruns (XrunPositions&, bool abs = false) const;
475 
483  // no transients, but its OK
484  }
485 
486  /* wrapper to the above for easy access throug Lua */
489  get_transients (rv);
490  return rv;
491  }
492 
493  bool has_transients () const;
494 
495  virtual int separate_by_channel (std::vector< std::shared_ptr<Region> >&) const {
496  return -1;
497  }
498 
500 
501  void drop_sources ();
502 
503  /* Allow to collect RegionsPropertyChanged signal emissions */
504  void set_changemap (ChangeMap* changemap) {
505  _changemap = changemap;
506  }
507 
508  void get_cue_markers (CueMarkers&, bool abs = false) const;
509  void move_cue_marker (CueMarker const &, timepos_t const & region_relative_position);
510  void rename_cue_marker (CueMarker&, std::string const &);
511 
512  /* Region Fx */
513  bool load_plugin (ARDOUR::PluginType type, std::string const& name);
514  bool add_plugin (std::shared_ptr<RegionFxPlugin>, std::shared_ptr<RegionFxPlugin> pos = std::shared_ptr<RegionFxPlugin> ());
515  virtual bool remove_plugin (std::shared_ptr<RegionFxPlugin>) { return false; }
516  virtual void reorder_plugins (RegionFxList const&);
517 
518  bool has_region_fx () const {
519  Glib::Threads::RWLock::ReaderLock lm (_fx_lock);
520  return !_plugins.empty ();
521  }
522 
523  std::shared_ptr<RegionFxPlugin> nth_plugin (uint32_t n) const {
524  Glib::Threads::RWLock::ReaderLock lm (_fx_lock);
525  for (auto const& i : _plugins) {
526  if (0 == n--) {
527  return i;
528  }
529  }
530  return std::shared_ptr<RegionFxPlugin> ();
531  }
532 
533  void foreach_plugin (boost::function<void(std::weak_ptr<RegionFxPlugin>)> method) const {
534  Glib::Threads::RWLock::ReaderLock lm (_fx_lock);
535  for (auto const& i : _plugins) {
536  method (std::weak_ptr<RegionFxPlugin> (i));
537  }
538  }
539 
540 protected:
541  virtual XMLNode& state () const;
542 
543  friend class RegionFactory;
544 
546  Region (const SourceList& srcs);
547 
549  Region (std::shared_ptr<const Region>);
550 
552  Region (std::shared_ptr<const Region>, timecnt_t const & start_offset);
553 
555  Region (std::shared_ptr<const Region>, const SourceList&);
556 
558  Region (Session& s, timepos_t const & start, timecnt_t const & length, const std::string& name, DataType);
559 
560  virtual bool can_trim_start_before_source_start () const {
561  return false;
562  }
563 
564 protected:
565  virtual bool _add_plugin (std::shared_ptr<RegionFxPlugin>, std::shared_ptr<RegionFxPlugin>, bool) { return false; }
566  virtual void fx_latency_changed (bool no_emit);
567  virtual void fx_tail_changed (bool no_emit);
568 
569  virtual void send_change (const PBD::PropertyChange&);
570  virtual int _set_state (const XMLNode&, int version, PBD::PropertyChange& what_changed, bool send_signal);
571  virtual void set_position_internal (timepos_t const & pos);
572  virtual void set_length_internal (timecnt_t const &);
573  virtual void set_start_internal (timepos_t const &);
575  void first_edit ();
576 
577  void override_opaqueness (bool yn) {
578  _opaque = yn;
579  }
580 
581  /* This is always using AudioTime. convenient for evenlopes in AudioRegion */
582  timepos_t len_as_tpos () const { return timepos_t((samplepos_t)_length.val().samples()); }
583 
585 
586  mutable Glib::Threads::RWLock _fx_lock;
587  uint32_t _fx_latency;
588  uint32_t _fx_tail;
590 
599 
603 
604  std::weak_ptr<ARDOUR::Playlist> _playlist;
605 
607 
608  AnalysisFeatureList _onsets; // used by the Ferret (Aubio OnsetDetector)
609 
610  // _transient_user_start is covered by _valid_transients
612  samplepos_t _transient_user_start; // region's _start relative to user_transients
613 
614  // these are used by Playlist::find_next_transient() in absence of onsets
615  AnalysisFeatureList _transients; // Source Analysis (QM Transient), user read-only
618 
620 
621 private:
623 
625 
626  void maybe_uncopy ();
628 
629  bool verify_start (timepos_t const &);
631 
632  virtual void recompute_at_start () = 0;
633  virtual void recompute_at_end () = 0;
634 
652  PBD::Property<bool> _contents; // type is irrelevant
653 
657 
659 
661 
662  void use_sources (SourceList const &);
663 
664  enum RegionGroupFlags : uint64_t {
665  NoGroup = 0x0, // no flag: implicitly grouped if the id is nonzero; or implicitly 'un-grouped' if the group-id is zero
666  Explicit = 0x1, // the user has explicitly grouped or ungrouped this region. explicitly grouped regions can cross track-group boundaries
667  };
668  static uint64_t _retained_group_id;
669  static uint64_t _retained_take_cnt;
670  static uint64_t _next_group_id;
671 
672  static Glib::Threads::Mutex _operation_rgroup_mutex;
673  static std::map<uint64_t, uint64_t> _operation_rgroup_map;
674 
675  std::atomic<int> _source_deleted;
676  Glib::Threads::Mutex _source_list_lock;
678 };
679 
680 } /* namespace ARDOUR */
681 
682 #endif /* __ardour_region_h__ */
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)
virtual void set_length_internal(timecnt_t const &)
AnalysisFeatureList _user_transients
void use_sources(SourceList const &)
virtual timecnt_t tail() const
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()
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 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
PBD::Signal0< void > RegionFxChanged
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)
static PBD::Signal2< void, std::shared_ptr< RegionList >, const PBD::PropertyChange & > RegionsPropertyChanged
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
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)
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
void foreach_plugin(boost::function< void(std::weak_ptr< RegionFxPlugin >)> method) const
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
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
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
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)
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
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
RegionEditState _first_edit
Temporal::TimeDomain time_domain() const
PBD::Property< bool > _automatic
virtual XMLNode & state() const
Temporal::Beats absolute_time_to_region_beats(Temporal::timepos_t const &) 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:193
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 > valid_transients
PBD::PropertyDescriptor< timepos_t > sync_position
PBD::PropertyDescriptor< bool > left_of_split
PBD::PropertyDescriptor< bool > external
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< 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)