Plugin Order: remove from instant.xml and save to: plugin_metadata/plugin_order
[ardour.git] / libs / ardour / ardour / export_format_base.h
index 7f09d148fe7adf10940f60a9841199d210e301ab..ee2739eee1f576ab8c33115e9eb970596691a619 100644 (file)
@@ -97,11 +97,12 @@ class LIBARDOUR_API ExportFormatBase {
                SR_None = 0,
                SR_Session = 1,
                SR_8 = 8000,
-               SR_22_05 = 220500,
+               SR_22_05 = 22050,
                SR_44_1 = 44100,
                SR_48 = 48000,
                SR_88_2 = 88200,
                SR_96 = 96000,
+               SR_176_4 = 176400,
                SR_192 = 192000
        };
 
@@ -165,7 +166,7 @@ class LIBARDOUR_API ExportFormatBase {
        void set_extension (std::string const & extension) { _extension = extension; }
        std::string const & extension () const { return _extension; }
 
-       static SampleRate nearest_sample_rate (framecnt_t sample_rate);
+       static SampleRate nearest_sample_rate (samplecnt_t sample_rate);
 
   protected: