there is no remote model choice anymore - ordering is determined by the GUI
[ardour.git] / libs / ardour / ardour / audioregion.h
index ff718bb4b0b055116bb5755453dc8a9d69ba665b..2d74d91482a14a3a499b5c111ab1cecae260fcb0 100644 (file)
 #include "pbd/undo.h"
 
 #include "ardour/ardour.h"
-#include "ardour/automatable_controls.h"
-#include "ardour/gain.h"
+#include "ardour/automatable.h"
+#include "ardour/automation_list.h"
+#include "ardour/interthread_info.h"
 #include "ardour/logcurve.h"
 #include "ardour/region.h"
 
 class XMLNode;
+class AudioRegionReadTest;
+class PlaylistReadTest;
 
 namespace ARDOUR {
 
-class Route;
+namespace Properties {
+       LIBARDOUR_API extern PBD::PropertyDescriptor<bool> envelope_active;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<bool> default_fade_in;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<bool> default_fade_out;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<bool> fade_in_active;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<bool> fade_out_active;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<float> scale_amplitude;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<boost::shared_ptr<AutomationList> > fade_in;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<boost::shared_ptr<AutomationList> > inverse_fade_in;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<boost::shared_ptr<AutomationList> > fade_out;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<boost::shared_ptr<AutomationList> > inverse_fade_out;
+       LIBARDOUR_API extern PBD::PropertyDescriptor<boost::shared_ptr<AutomationList> > envelope;
+}
+
 class Playlist;
 class Session;
 class Filter;
 class AudioSource;
 
-class AudioRegion : public Region
+
+class LIBARDOUR_API AudioRegion : public Region
 {
   public:
-       static Change FadeInChanged;
-       static Change FadeOutChanged;
-       static Change FadeInActiveChanged;
-       static Change FadeOutActiveChanged;
-       static Change EnvelopeActiveChanged;
-       static Change ScaleAmplitudeChanged;
-       static Change EnvelopeChanged;
+       static void make_property_quarks ();
 
        ~AudioRegion();
 
@@ -63,73 +74,72 @@ class AudioRegion : public Region
 
        boost::shared_ptr<AudioSource> audio_source (uint32_t n=0) const;
 
+    // if several audio files associated with a region,
+    // information about file with MAX channel count will be provided
+    uint32_t get_related_audio_file_channel_count () const;
+
        void   set_scale_amplitude (gain_t);
        gain_t scale_amplitude() const { return _scale_amplitude; }
 
-       void normalize_to (float target_in_dB = 0.0f);
+       void normalize (float, float target_in_dB = 0.0f);
+       double maximum_amplitude (Progress* p = 0) const;
+
+       bool envelope_active () const { return _envelope_active; }
+       bool fade_in_active ()  const { return _fade_in_active; }
+       bool fade_out_active () const { return _fade_out_active; }
 
-       bool envelope_active () const { return _flags & Region::EnvelopeActive; }
-       bool fade_in_active ()  const { return _flags & Region::FadeIn; }
-       bool fade_out_active () const { return _flags & Region::FadeOut; }
+       boost::shared_ptr<AutomationList> fade_in()  { return _fade_in.val (); }
+       boost::shared_ptr<AutomationList> inverse_fade_in()  { return _inverse_fade_in.val (); }
+       boost::shared_ptr<AutomationList> fade_out() { return _fade_out.val (); }
+       boost::shared_ptr<AutomationList> inverse_fade_out()  { return _inverse_fade_out.val (); }
+       boost::shared_ptr<AutomationList> envelope() { return _envelope.val (); }
 
-       boost::shared_ptr<AutomationList> fade_in()  { return _fade_in; }
-       boost::shared_ptr<AutomationList> fade_out() { return _fade_out; }
-       boost::shared_ptr<AutomationList> envelope() { return _envelope; }
+       Evoral::Range<framepos_t> body_range () const;
 
-       virtual nframes_t read_peaks (PeakData *buf, nframes_t npeaks,
-                       nframes_t offset, nframes_t cnt,
-                       uint32_t chan_n=0, double samples_per_unit= 1.0) const;
+       virtual framecnt_t read_peaks (PeakData *buf, framecnt_t npeaks,
+                       framecnt_t offset, framecnt_t cnt,
+                       uint32_t chan_n=0, double frames_per_pixel = 1.0) const;
 
        /* Readable interface */
 
-       enum ReadOps {
-               ReadOpsNone = 0x0,
-               ReadOpsOwnAutomation = 0x1,
-               ReadOpsOwnScaling = 0x2,
-               ReadOpsCount = 0x4,
-               ReadOpsFades = 0x8
-       };
+       virtual framecnt_t read (Sample*, framepos_t pos, framecnt_t cnt, int channel) const;
+       virtual framecnt_t readable_length() const { return length(); }
 
-       virtual nframes_t read (Sample*, sframes_t pos, nframes_t cnt, int channel) const;
-       virtual nframes_t read_with_ops (Sample*, sframes_t pos, nframes_t cnt, int channel, ReadOps rops) const;
-       virtual nframes64_t readable_length() const { return length(); }
+       virtual framecnt_t read_at (Sample *buf, Sample *mixdown_buf, float *gain_buf,
+                                   framepos_t position,
+                                   framecnt_t cnt,
+                                   uint32_t   chan_n = 0) const;
 
-       virtual nframes_t read_at (Sample *buf, Sample *mixdown_buf, float *gain_buf,
-                       sframes_t position,
-                       nframes_t cnt,
-                       uint32_t  chan_n      = 0,
-                       nframes_t read_frames = 0,
-                       nframes_t skip_frames = 0) const;
+       virtual framecnt_t master_read_at (Sample *buf, Sample *mixdown_buf, float *gain_buf,
+                                          framepos_t position, framecnt_t cnt, uint32_t chan_n=0) const;
 
-       virtual nframes_t master_read_at (Sample *buf, Sample *mixdown_buf, float *gain_buf,
-                       sframes_t position, nframes_t cnt, uint32_t chan_n=0) const;
+       virtual framecnt_t read_raw_internal (Sample*, framepos_t, framecnt_t, int channel) const;
 
-       virtual nframes_t read_raw_internal (Sample*, sframes_t, nframes_t, int channel) const;
+       XMLNode& state ();
+       XMLNode& get_basic_state ();
+       int set_state (const XMLNode&, int version);
 
-       XMLNode& state (bool);
-       int      set_state (const XMLNode&);
+       void fade_range (framepos_t, framepos_t);
 
-       static void set_default_fade (float steepness, nframes_t len);
        bool fade_in_is_default () const;
        bool fade_out_is_default () const;
 
-       enum FadeShape {
-               Linear,
-               Fast,
-               Slow,
-               LogA,
-               LogB
-       };
-
        void set_fade_in_active (bool yn);
        void set_fade_in_shape (FadeShape);
-       void set_fade_in_length (nframes_t);
-       void set_fade_in (FadeShape, nframes_t);
+       void set_fade_in_length (framecnt_t);
+       void set_fade_in (FadeShape, framecnt_t);
+       void set_fade_in (boost::shared_ptr<AutomationList>);
 
        void set_fade_out_active (bool yn);
        void set_fade_out_shape (FadeShape);
-       void set_fade_out_length (nframes_t);
-       void set_fade_out (FadeShape, nframes_t);
+       void set_fade_out_length (framecnt_t);
+       void set_fade_out (FadeShape, framecnt_t);
+       void set_fade_out (boost::shared_ptr<AutomationList>);
+
+       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 ();
@@ -140,18 +150,14 @@ class AudioRegion : public Region
 
        boost::shared_ptr<Evoral::Control>
        control(const Evoral::Parameter& id, bool create=false) {
-               return _automatable.data().control(id, create);
+               return _automatable.control(id, create);
        }
 
        virtual boost::shared_ptr<const Evoral::Control>
        control(const Evoral::Parameter& id) const {
-               return _automatable.data().control(id);
+               return _automatable.control(id);
        }
 
-       /* export */
-
-       int exportme (ARDOUR::Session&, ARDOUR::ExportSpecification&);
-
        /* xfade/fade interactions */
 
        void suspend_fade_in ();
@@ -159,38 +165,49 @@ class AudioRegion : public Region
        void resume_fade_in ();
        void resume_fade_out ();
 
-       int get_transients (AnalysisFeatureList&, bool force_new = false);
-       std::list<std::pair<nframes_t, nframes_t> > find_silence (Sample, nframes_t) const;
+       void add_transient (framepos_t where);
+       void remove_transient (framepos_t where);
+       void clear_transients ();
+       void set_onsets (AnalysisFeatureList&);
+       void get_transients (AnalysisFeatureList&);
+       void update_transient (framepos_t old_position, framepos_t new_position);
+
+       AudioIntervalResult find_silence (Sample, framecnt_t, framecnt_t, InterThreadInfo&) const;
 
   private:
        friend class RegionFactory;
-       friend class Crossfade;
 
-       AudioRegion (boost::shared_ptr<AudioSource>, nframes_t start, nframes_t length);
-       AudioRegion (boost::shared_ptr<AudioSource>, nframes_t start, nframes_t length, const std::string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags);
-       AudioRegion (const SourceList &, nframes_t start, nframes_t length, const std::string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags);
-       AudioRegion (boost::shared_ptr<const AudioRegion>, nframes_t start, nframes_t length, const std::string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags);
-       AudioRegion (boost::shared_ptr<const AudioRegion>, const SourceList&, nframes_t length, const std::string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags);
+       AudioRegion (boost::shared_ptr<AudioSource>);
+       AudioRegion (const SourceList &);
        AudioRegion (boost::shared_ptr<const AudioRegion>);
-       AudioRegion (boost::shared_ptr<AudioSource>, const XMLNode&);
-       AudioRegion (SourceList &, const XMLNode&);
+       AudioRegion (boost::shared_ptr<const AudioRegion>, frameoffset_t offset);
+       AudioRegion (boost::shared_ptr<const AudioRegion>, const SourceList&);
+       AudioRegion (SourceList &);
 
   private:
+       friend class ::AudioRegionReadTest;
+       friend class ::PlaylistReadTest;
+
+       void build_transients ();
+
+       PBD::Property<bool>     _envelope_active;
+       PBD::Property<bool>     _default_fade_in;
+       PBD::Property<bool>     _default_fade_out;
+       PBD::Property<bool>     _fade_in_active;
+       PBD::Property<bool>     _fade_out_active;
+       /** linear gain to apply to the whole region */
+       PBD::Property<gain_t>   _scale_amplitude;
+
+       void register_properties ();
+       void post_set (const PBD::PropertyChange&);
+
        void init ();
        void set_default_fades ();
-       void set_default_fade_in ();
-       void set_default_fade_out ();
 
        void recompute_gain_at_end ();
        void recompute_gain_at_start ();
 
-       nframes_t _read_at (const SourceList&, nframes_t limit,
-                       Sample *buf, Sample *mixdown_buffer, float *gain_buffer,
-                       sframes_t position, nframes_t cnt,
-                       uint32_t chan_n = 0,
-                       nframes_t read_frames = 0,
-                       nframes_t skip_frames = 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 ();
@@ -203,23 +220,24 @@ class AudioRegion : public Region
        void connect_to_analysis_changed ();
        void connect_to_header_position_offset_changed ();
 
-       AutomatableControls _automatable;
 
-       boost::shared_ptr<AutomationList> _fade_in;
-       FadeShape                         _fade_in_shape;
-       boost::shared_ptr<AutomationList> _fade_out;
-       FadeShape                         _fade_out_shape;
-       boost::shared_ptr<AutomationList> _envelope;
-       gain_t                            _scale_amplitude;
-       uint32_t                          _fade_in_disabled;
-       uint32_t                          _fade_out_disabled;
+       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<ARDOUR::Region> get_single_other_xfade_region (bool start) const;
 
   protected:
        /* default constructor for derived (compound) types */
 
-       AudioRegion (Session& s, nframes_t, nframes_t, std::string name);
+       AudioRegion (Session& s, framepos_t, framecnt_t, std::string name);
 
-       int set_live_state (const XMLNode&, Change&, bool send);
+       int _set_state (const XMLNode&, int version, PBD::PropertyChange& what_changed, bool send_signal);
 };
 
 } /* namespace ARDOUR */
@@ -227,9 +245,9 @@ class AudioRegion : public Region
 /* access from C objects */
 
 extern "C" {
-       int    region_read_peaks_from_c   (void *arg, uint32_t npeaks, uint32_t start, uint32_t length, intptr_t data, uint32_t n_chan, double samples_per_unit);
-       uint32_t region_length_from_c (void *arg);
-       uint32_t sourcefile_length_from_c (void *arg, double);
+       LIBARDOUR_API int    region_read_peaks_from_c   (void *arg, uint32_t npeaks, uint32_t start, uint32_t length, intptr_t data, uint32_t n_chan, double samples_per_unit);
+       LIBARDOUR_API uint32_t region_length_from_c (void *arg);
+       LIBARDOUR_API uint32_t sourcefile_length_from_c (void *arg, double);
 }
 
 #endif /* __ardour_audio_region_h__ */