add LuaTableRef to DSP API as alternative to shared-mem
[ardour.git] / libs / ardour / ardour / export_format_base.h
index a21c977833130313eadddd340e74ca83259d7f31..093913e294b9f8b1302d3d4115e5addb1710b3e6 100644 (file)
@@ -30,6 +30,7 @@
 #include <samplerate.h>
 
 #include "pbd/signals.h"
+#include "ardour/libardour_visibility.h"
 #include "ardour/types.h"
 
 #include "audiographer/general/sample_format_converter.h"
@@ -37,7 +38,7 @@
 namespace ARDOUR
 {
 
-class ExportFormatBase {
+class LIBARDOUR_API ExportFormatBase {
   public:
 
        enum Type {
@@ -96,11 +97,12 @@ class 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
        };
 
@@ -113,7 +115,7 @@ class ExportFormatBase {
        };
 
        /// Class for managing selection and compatibility states
-       class SelectableCompatible {
+       class LIBARDOUR_API SelectableCompatible {
          public:
                SelectableCompatible ()
                        : _selected (false), _compatible (true) { }