X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Faudioregion.h;h=8e510b3e43cd25d41f2ec1f269c7427d634ba959;hb=0622a0cc3068a06d328119e90b7d9c5f5a84df32;hp=683e946713029d31ecd9986554e270f16c8dc7a3;hpb=6f4a92f740b2fd75794489ce58f9348f8adf6bf4;p=ardour.git diff --git a/libs/ardour/ardour/audioregion.h b/libs/ardour/ardour/audioregion.h index 683e946713..8e510b3e43 100644 --- a/libs/ardour/ardour/audioregion.h +++ b/libs/ardour/ardour/audioregion.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2001 Paul Davis + Copyright (C) 2000-2006 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,144 +15,144 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #ifndef __ardour_audio_region_h__ #define __ardour_audio_region_h__ #include +#include -#include -#include +#include "pbd/fastlog.h" +#include "pbd/undo.h" -#include -#include -#include -#include -#include +#include "ardour/ardour.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 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; class Session; -class AudioFilter; +class Filter; class AudioSource; -struct AudioRegionState : public RegionState -{ - AudioRegionState (std::string why); - - Curve _fade_in; - Curve _fade_out; - Curve _envelope; - gain_t _scale_amplitude; - uint32_t _fade_in_disabled; - uint32_t _fade_out_disabled; -}; -class AudioRegion : public Region +class LIBARDOUR_API AudioRegion : public Region { public: - typedef vector SourceList; - - static Change FadeInChanged; - static Change FadeOutChanged; - static Change FadeInActiveChanged; - static Change FadeOutActiveChanged; - static Change EnvelopeActiveChanged; - static Change ScaleAmplitudeChanged; - static Change EnvelopeChanged; - - AudioRegion (AudioSource&, jack_nframes_t start, jack_nframes_t length, bool announce = true); - AudioRegion (AudioSource&, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags, bool announce = true); - AudioRegion (SourceList &, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags, bool announce = true); - AudioRegion (const AudioRegion&, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags, bool announce = true); - AudioRegion (const AudioRegion&); - AudioRegion (AudioSource&, const XMLNode&); - AudioRegion (SourceList &, const XMLNode&); + static void make_property_quarks (); + ~AudioRegion(); - bool source_equivalent (const Region&) const; + void copy_settings (boost::shared_ptr); + + bool source_equivalent (boost::shared_ptr) const; bool speed_mismatch (float) const; - void lock_sources (); - void unlock_sources (); - AudioSource& source (uint32_t n=0) const { if (n < sources.size()) return *sources[n]; else return *sources[0]; } + boost::shared_ptr audio_source (uint32_t n=0) const; - void set_scale_amplitude (gain_t); + void set_scale_amplitude (gain_t); gain_t scale_amplitude() const { return _scale_amplitude; } - - void normalize_to (float target_in_dB = 0.0f); - uint32_t n_channels() { return sources.size(); } - vector master_source_names(); - - 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; } - bool captured() const { return !(_flags & (Region::Flag (Region::Import|Region::External))); } - - Curve& fade_in() { return _fade_in; } - Curve& fade_out() { return _fade_out; } - Curve& envelope() { return _envelope; } - - jack_nframes_t read_peaks (PeakData *buf, jack_nframes_t npeaks, - jack_nframes_t offset, jack_nframes_t cnt, - uint32_t chan_n=0, double samples_per_unit= 1.0) const; - - virtual jack_nframes_t read_at (Sample *buf, Sample *mixdown_buf, - float *gain_buf, char * workbuf, jack_nframes_t position, jack_nframes_t cnt, - uint32_t chan_n = 0, - jack_nframes_t read_frames = 0, - jack_nframes_t skip_frames = 0) const; - - jack_nframes_t master_read_at (Sample *buf, Sample *mixdown_buf, - float *gain_buf, char * workbuf, - jack_nframes_t position, jack_nframes_t cnt, uint32_t chan_n=0) const; - - XMLNode& state (bool); - int set_state (const XMLNode&); - - static void set_default_fade (float steepness, jack_nframes_t len); - - enum FadeShape { - Linear, - Fast, - Slow, - LogA, - LogB - }; + 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; } + + 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 frames_per_pixel = 1.0) const; + + /* Readable interface */ + + virtual framecnt_t read (Sample*, framepos_t pos, framecnt_t cnt, int channel) const; + virtual framecnt_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 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 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); + + void fade_range (framepos_t, framepos_t); + + bool fade_in_is_default () const; + bool fade_out_is_default () const; void set_fade_in_active (bool yn); void set_fade_in_shape (FadeShape); - void set_fade_in_length (jack_nframes_t); - void set_fade_in (FadeShape, jack_nframes_t); + void set_fade_in_length (framecnt_t); + void set_fade_in (FadeShape, framecnt_t); + void set_fade_in (boost::shared_ptr); void set_fade_out_active (bool yn); void set_fade_out_shape (FadeShape); - void set_fade_out_length (jack_nframes_t); - void set_fade_out (FadeShape, jack_nframes_t); - - void set_envelope_active (bool yn); + void set_fade_out_length (framecnt_t); + void set_fade_out (FadeShape, framecnt_t); + void set_fade_out (boost::shared_ptr); - int separate_by_channel (ARDOUR::Session&, vector&) const; - - UndoAction get_memento() const; + void set_default_fade_in (); + void set_default_fade_out (); - /* filter */ + framecnt_t verify_xfade_bounds (framecnt_t, bool start); + + void set_envelope_active (bool yn); + void set_default_envelope (); - int apply (AudioFilter&); + int separate_by_channel (ARDOUR::Session&, std::vector >&) const; - /* export */ + /* automation */ - int exportme (ARDOUR::Session&, ARDOUR::AudioExportSpecification&); + boost::shared_ptr + control(const Evoral::Parameter& id, bool create=false) { + return _automatable.control(id, create); + } - Region* get_parent(); + virtual boost::shared_ptr + control(const Evoral::Parameter& id) const { + return _automatable.control(id); + } /* xfade/fade interactions */ @@ -161,52 +161,77 @@ class AudioRegion : public Region void resume_fade_in (); void resume_fade_out (); + 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); + + AudioIntervalResult find_silence (Sample, framecnt_t, InterThreadInfo&) const; + private: - friend class Playlist; + friend class RegionFactory; + + AudioRegion (boost::shared_ptr); + AudioRegion (const SourceList &); + AudioRegion (boost::shared_ptr); + AudioRegion (boost::shared_ptr, frameoffset_t offset); + AudioRegion (boost::shared_ptr, const SourceList&); + AudioRegion (SourceList &); private: + friend class ::AudioRegionReadTest; + friend class ::PlaylistReadTest; + + PBD::Property _envelope_active; + PBD::Property _default_fade_in; + PBD::Property _default_fade_out; + PBD::Property _fade_in_active; + PBD::Property _fade_out_active; + /** linear gain to apply to the whole region */ + PBD::Property _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 set_default_envelope (); - - StateManager::State* state_factory (std::string why) const; - Change restore_state (StateManager::State&); void recompute_gain_at_end (); void recompute_gain_at_start (); - jack_nframes_t _read_at (const SourceList&, Sample *buf, Sample *mixdown_buffer, - float *gain_buffer, char * workbuf, jack_nframes_t position, jack_nframes_t cnt, - uint32_t chan_n = 0, - jack_nframes_t read_frames = 0, - jack_nframes_t skip_frames = 0) const; + framecnt_t read_from_sources (SourceList const &, framecnt_t, Sample *, framepos_t, framecnt_t, uint32_t) const; - bool verify_start (jack_nframes_t position); - bool verify_length (jack_nframes_t position); - bool verify_start_mutable (jack_nframes_t& start); - bool verify_start_and_length (jack_nframes_t start, jack_nframes_t length); void recompute_at_start (); void recompute_at_end (); - void envelope_changed (Change); + void envelope_changed (); + void fade_in_changed (); + void fade_out_changed (); + void source_offset_changed (); + void listen_to_my_curves (); + void connect_to_analysis_changed (); + void connect_to_header_position_offset_changed (); - void source_deleted (Source*); - - - SourceList sources; - - /** Used when timefx are applied, so we can always use the original source. */ - SourceList master_sources; - - mutable Curve _fade_in; - FadeShape _fade_in_shape; - mutable Curve _fade_out; - FadeShape _fade_out_shape; - mutable Curve _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 get_single_other_xfade_region (bool start) const; + + protected: + /* default constructor for derived (compound) types */ + + AudioRegion (Session& s, framepos_t, framecnt_t, std::string name); + + int _set_state (const XMLNode&, int version, PBD::PropertyChange& what_changed, bool send_signal); }; } /* namespace ARDOUR */ @@ -214,9 +239,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__ */