X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Faudioregion.h;h=d25cf0e421112b48bd1f6bdf1a5709534af2237a;hb=23a2cc4b71845a61dcc01f5663dacd74f198f0c3;hp=c03f32cb636d6ad72dbc9cdc076fd327de81a744;hpb=a98fa4bc61e26cd94aeb6720325633c4e6618155;p=ardour.git diff --git a/libs/ardour/ardour/audioregion.h b/libs/ardour/ardour/audioregion.h index c03f32cb63..d25cf0e421 100644 --- a/libs/ardour/ardour/audioregion.h +++ b/libs/ardour/ardour/audioregion.h @@ -34,28 +34,23 @@ #include "ardour/region.h" class XMLNode; -class AudioRegionTest; +class AudioRegionReadTest; class PlaylistReadTest; namespace ARDOUR { namespace Properties { - extern PBD::PropertyDescriptor envelope_active; - extern PBD::PropertyDescriptor default_fade_in; - extern PBD::PropertyDescriptor default_fade_out; - 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; + LIBARDOUR_API extern PBD::PropertyDescriptor envelope_active; + LIBARDOUR_API extern PBD::PropertyDescriptor default_fade_in; + LIBARDOUR_API extern PBD::PropertyDescriptor default_fade_out; + LIBARDOUR_API extern PBD::PropertyDescriptor fade_in_active; + LIBARDOUR_API extern PBD::PropertyDescriptor fade_out_active; + LIBARDOUR_API extern PBD::PropertyDescriptor scale_amplitude; + LIBARDOUR_API extern PBD::PropertyDescriptor > fade_in; + LIBARDOUR_API extern PBD::PropertyDescriptor > inverse_fade_in; + LIBARDOUR_API extern PBD::PropertyDescriptor > fade_out; + LIBARDOUR_API extern PBD::PropertyDescriptor > inverse_fade_out; + LIBARDOUR_API extern PBD::PropertyDescriptor > envelope; } class Playlist; @@ -64,7 +59,7 @@ class Filter; class AudioSource; -class AudioRegion : public Region +class LIBARDOUR_API AudioRegion : public Region { public: static void make_property_quarks (); @@ -79,32 +74,40 @@ class AudioRegion : public Region boost::shared_ptr 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 (float, float target_in_dB = 0.0f); + + /** @return the maximum (linear) amplitude of the region, or a -ve + * number if the Progress object reports that the process was cancelled. + */ double maximum_amplitude (Progress* p = 0) const; + /** @return the maximum (rms) signal power of the region, or a -1 + * if the Progress object reports that the process was cancelled. + */ + double rms (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 fade_in_is_xfade() const { return _fade_in_is_xfade; } - void set_fade_in_is_xfade (bool yn); - 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 inverse_fade_in() { return _inverse_fade_in; } - boost::shared_ptr fade_out() { return _fade_out; } - boost::shared_ptr inverse_fade_out() { return _inverse_fade_out; } - boost::shared_ptr envelope() { return _envelope; } + 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; virtual framecnt_t read_peaks (PeakData *buf, framecnt_t npeaks, framecnt_t offset, framecnt_t cnt, - uint32_t chan_n=0, double samples_per_unit= 1.0) const; + uint32_t chan_n=0, double frames_per_pixel = 1.0) const; /* Readable interface */ @@ -122,9 +125,11 @@ class AudioRegion : public Region virtual framecnt_t read_raw_internal (Sample*, framepos_t, framecnt_t, int channel) const; XMLNode& state (); + XMLNode& get_basic_state (); int set_state (const XMLNode&, int version); - static void set_default_fade (float steepness, framecnt_t len); + void fade_range (framepos_t, framepos_t); + bool fade_in_is_default () const; bool fade_out_is_default () const; @@ -144,7 +149,7 @@ class AudioRegion : public Region void set_default_fade_out (); framecnt_t verify_xfade_bounds (framecnt_t, bool start); - + void set_envelope_active (bool yn); void set_default_envelope (); @@ -171,12 +176,12 @@ class AudioRegion : public Region void add_transient (framepos_t where); void remove_transient (framepos_t where); - int set_transients (AnalysisFeatureList&); - int get_transients (AnalysisFeatureList&, bool force_new = false); - int update_transient (framepos_t old_position, framepos_t new_position); - int adjust_transients (frameoffset_t delta); + 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, InterThreadInfo&) const; + AudioIntervalResult find_silence (Sample, framecnt_t, framecnt_t, InterThreadInfo&) const; private: friend class RegionFactory; @@ -184,14 +189,16 @@ class AudioRegion : public Region AudioRegion (boost::shared_ptr); AudioRegion (const SourceList &); AudioRegion (boost::shared_ptr); - AudioRegion (boost::shared_ptr, frameoffset_t offset); + AudioRegion (boost::shared_ptr, frameoffset_t offset, const int32_t sub_num); AudioRegion (boost::shared_ptr, const SourceList&); AudioRegion (SourceList &); private: - friend class ::AudioRegionTest; + friend class ::AudioRegionReadTest; friend class ::PlaylistReadTest; - + + void build_transients (); + PBD::Property _envelope_active; PBD::Property _default_fade_in; PBD::Property _default_fade_out; @@ -222,20 +229,15 @@ 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 _inverse_fade_in; - boost::shared_ptr _fade_out; - boost::shared_ptr _inverse_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; @@ -252,9 +254,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__ */