permit different sizes for audio playback & capture buffers
[ardour.git] / libs / ardour / ardour / audiofilesource.h
index 2b59de63ca425026e5e8ccf97d677e9c73487559..f0710843f8c4e9a997f4fd629ed79343a8da9f42 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2006 Paul Davis 
+    Copyright (C) 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
 
 */
 
-#ifndef __ardour_audiofilesource_h__ 
+#ifndef __ardour_audiofilesource_h__
 #define __ardour_audiofilesource_h__
 
 #include <exception>
 #include <time.h>
-#include <ardour/audiosource.h>
-#include <ardour/file_source.h>
+#include "ardour/audiosource.h"
+#include "ardour/file_source.h"
 
 namespace ARDOUR {
 
@@ -42,10 +42,10 @@ public:
        bool set_name (const std::string& newname) {
                return (set_source_name(newname, destructive()) == 0);
        }
-       
+
        Glib::ustring peak_path (Glib::ustring audio_path);
        Glib::ustring find_broken_peakfile (Glib::ustring missing_peak_path,
-                                            Glib::ustring audio_path);
+                       Glib::ustring audio_path);
 
        static void set_peak_dir (Glib::ustring dir) { peak_dir = dir; }
 
@@ -58,13 +58,13 @@ public:
        /* this block of methods do nothing for regular file sources, but are significant
           for files used in destructive recording.
        */
-       virtual nframes_t last_capture_start_frame() const { return 0; }
-       virtual void      mark_capture_start (nframes_t) {}
+       virtual sframes_t last_capture_start_frame() const { return 0; }
+       virtual void      mark_capture_start (sframes_t) {}
        virtual void      mark_capture_end () {}
        virtual void      clear_capture_marks() {}
        virtual bool      one_of_several_channels () const { return false; }
 
-       virtual int update_header (nframes_t when, struct tm&, time_t) = 0;
+       virtual int update_header (sframes_t when, struct tm&, time_t) = 0;
        virtual int flush_header () = 0;
 
        void mark_streaming_write_completed ();
@@ -72,36 +72,36 @@ public:
        int setup_peakfile ();
 
        XMLNode& get_state ();
-       int set_state (const XMLNode&);
+       int set_state (const XMLNode&, int version);
 
        bool can_truncate_peaks() const { return !destructive(); }
-       bool can_be_analysed() const    { return _length > 0; } 
-       
+       bool can_be_analysed() const    { return _length > 0; }
+
        static bool safe_audio_file_extension (const Glib::ustring& path);
-       
+
        static bool is_empty (Session&, Glib::ustring path);
-       
+
        static void set_bwf_serial_number (int);
        static void set_header_position_offset (nframes_t offset );
 
-       static sigc::signal<void> HeaderPositionOffsetChanged;
+       static PBD::Signal0<void> HeaderPositionOffsetChanged;
 
 protected:
        /** Constructor to be called for existing external-to-session files */
-       AudioFileSource (Session&, const Glib::ustring& path, bool embedded, Source::Flag flags);
+       AudioFileSource (Session&, const Glib::ustring& path, Source::Flag flags);
 
        /** Constructor to be called for new in-session files */
-       AudioFileSource (Session&, const Glib::ustring& path, bool embedded, Source::Flag flags,
-                        SampleFormat samp_format, HeaderFormat hdr_format);
+       AudioFileSource (Session&, const Glib::ustring& path, Source::Flag flags,
+                       SampleFormat samp_format, HeaderFormat hdr_format);
 
        /** Constructor to be called for existing in-session files */
        AudioFileSource (Session&, const XMLNode&, bool must_exist = true);
 
        int init (const Glib::ustring& idstr, bool must_exist);
-       
+
        virtual void set_header_timeline_position () = 0;
        virtual void handle_header_position_change () {}
-       
+
        int move_dependents_to_trash();
 
        static Sample* get_interleave_buffer (nframes_t size);