X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Faudioregion.h;h=e38c98ea05fbf559328cc6dae1e90a79bf4fc337;hb=04416e2d1df3cc8d9f014765e5ca5ce818b7b4d7;hp=87d515d39975323eb9188630c2bf69e10ca87390;hpb=f78913cc99ffd13001b4c4daf625391be77e79d0;p=ardour.git diff --git a/libs/ardour/ardour/audioregion.h b/libs/ardour/ardour/audioregion.h index 87d515d399..e38c98ea05 100644 --- a/libs/ardour/ardour/audioregion.h +++ b/libs/ardour/ardour/audioregion.h @@ -34,7 +34,7 @@ #include "ardour/region.h" class XMLNode; -class AudioRegionTest; +class AudioRegionReadTest; class PlaylistReadTest; namespace ARDOUR { @@ -46,16 +46,11 @@ namespace Properties { extern PBD::PropertyDescriptor fade_in_active; extern PBD::PropertyDescriptor fade_out_active; extern PBD::PropertyDescriptor scale_amplitude; - - /* the envelope and fades are not scalar items and so - currently (2010/02) are not stored using Property. - However, these descriptors enable us to notify - about changes to them via PropertyChange. - */ - - extern PBD::PropertyDescriptor envelope; - extern PBD::PropertyDescriptor fade_in; - extern PBD::PropertyDescriptor fade_out; + extern PBD::PropertyDescriptor > fade_in; + extern PBD::PropertyDescriptor > inverse_fade_in; + extern PBD::PropertyDescriptor > fade_out; + extern PBD::PropertyDescriptor > inverse_fade_out; + extern PBD::PropertyDescriptor > envelope; } class Playlist; @@ -94,9 +89,16 @@ class AudioRegion : public Region bool fade_out_is_xfade() const { return _fade_out_is_xfade; } void set_fade_out_is_xfade (bool yn); - boost::shared_ptr fade_in() { return _fade_in; } - boost::shared_ptr fade_out() { return _fade_out; } - boost::shared_ptr envelope() { return _envelope; } + bool fade_in_is_short() const { return _fade_in_is_short; } + void set_fade_in_is_short (bool yn); + bool fade_out_is_short() const { return _fade_out_is_short; } + void set_fade_out_is_short (bool yn); + + boost::shared_ptr fade_in() { return _fade_in.val (); } + boost::shared_ptr inverse_fade_in() { return _inverse_fade_in.val (); } + boost::shared_ptr fade_out() { return _fade_out.val (); } + boost::shared_ptr inverse_fade_out() { return _inverse_fade_out.val (); } + boost::shared_ptr envelope() { return _envelope.val (); } Evoral::Range body_range () const; @@ -106,13 +108,6 @@ class AudioRegion : public Region /* Readable interface */ - enum ReadOps { - ReadOpsNone = 0x0, - ReadOpsOwnAutomation = 0x1, - ReadOpsOwnScaling = 0x2, - ReadOpsFades = 0x4 - }; - virtual framecnt_t read (Sample*, framepos_t pos, framecnt_t cnt, int channel) const; virtual framecnt_t readable_length() const { return length(); } @@ -147,6 +142,8 @@ class AudioRegion : public Region void set_default_fade_in (); void set_default_fade_out (); + + framecnt_t verify_xfade_bounds (framecnt_t, bool start); void set_envelope_active (bool yn); void set_default_envelope (); @@ -183,7 +180,6 @@ class AudioRegion : public Region private: friend class RegionFactory; - friend class Crossfade; AudioRegion (boost::shared_ptr); AudioRegion (const SourceList &); @@ -193,7 +189,7 @@ class AudioRegion : public Region AudioRegion (SourceList &); private: - friend class ::AudioRegionTest; + friend class ::AudioRegionReadTest; friend class ::PlaylistReadTest; PBD::Property _envelope_active; @@ -203,6 +199,10 @@ class AudioRegion : public Region PBD::Property _fade_out_active; /** linear gain to apply to the whole region */ PBD::Property _scale_amplitude; + PBD::Property _fade_in_is_xfade; + PBD::Property _fade_out_is_xfade; + PBD::Property _fade_in_is_short; + PBD::Property _fade_out_is_short; void register_properties (); void post_set (const PBD::PropertyChange&); @@ -213,11 +213,7 @@ class AudioRegion : public Region void recompute_gain_at_end (); void recompute_gain_at_start (); - framecnt_t _read_at (const SourceList&, framecnt_t limit, - Sample *buf, Sample *mixdown_buffer, float *gain_buffer, - framepos_t position, framecnt_t cnt, - uint32_t chan_n = 0, - ReadOps readops = ReadOps (~0)) const; + framecnt_t read_from_sources (SourceList const &, framecnt_t, Sample *, framepos_t, framecnt_t, uint32_t) const; void recompute_at_start (); void recompute_at_end (); @@ -230,18 +226,17 @@ class AudioRegion : public Region void connect_to_analysis_changed (); void connect_to_header_position_offset_changed (); - Automatable _automatable; - - boost::shared_ptr _fade_in; - boost::shared_ptr _fade_out; - boost::shared_ptr _envelope; - uint32_t _fade_in_suspended; - uint32_t _fade_out_suspended; - /* This is not a Property because its not subject to user control, - or undo/redo. XXX this may prove to be a mistake. - */ - bool _fade_in_is_xfade; - bool _fade_out_is_xfade; + + AutomationListProperty _fade_in; + AutomationListProperty _inverse_fade_in; + AutomationListProperty _fade_out; + AutomationListProperty _inverse_fade_out; + AutomationListProperty _envelope; + Automatable _automatable; + uint32_t _fade_in_suspended; + uint32_t _fade_out_suspended; + + boost::shared_ptr get_single_other_xfade_region (bool start) const; protected: /* default constructor for derived (compound) types */