Add ARDOUR::ladspa_search_path function to get LADSPA module directories
[ardour.git] / libs / ardour / ardour / coreaudiosource.h
index be28662cb01d6bcf6ccdcb9939db9d2170b46c5f..820fa0b9d84c61e63ffd6ff9d69395552112f6cf 100644 (file)
@@ -34,7 +34,7 @@ class CoreAudioSource : public AudioFileSource {
        CoreAudioSource (ARDOUR::Session&, const string& path, int chn, Flag);
        ~CoreAudioSource ();
 
-        void set_path (const std::string& p);
+       void set_path (const std::string& p);
 
        float sample_rate() const;
        int update_header (framepos_t when, struct tm&, time_t);
@@ -48,13 +48,13 @@ class CoreAudioSource : public AudioFileSource {
   protected:
        framecnt_t read_unlocked (Sample *dst, framepos_t start, framecnt_t cnt) const;
        framecnt_t write_unlocked (Sample *, framecnt_t) { return 0; }
-       
+
   private:
        mutable CAAudioFile af;
        uint16_t n_channels;
 
        void init_cafile ();
-       int safe_read (Sample*, nframes_t start, framecnt_t cnt, AudioBufferList&) const;
+       int safe_read (Sample*, framepos_t start, framecnt_t cnt, AudioBufferList&) const;
 };
 
 }; /* namespace ARDOUR */