summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/types.h')
-rw-r--r--libs/ardour/ardour/types.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h
index b2230f12d7..0a3a7b731c 100644
--- a/libs/ardour/ardour/types.h
+++ b/libs/ardour/ardour/types.h
@@ -243,7 +243,14 @@ namespace ARDOUR {
PeakDatum min;
PeakDatum max;
};
-}
+
+ enum PluginType {
+ AudioUnit,
+ LADSPA,
+ VST
+ };
+
+} // namespace ARDOUR
std::istream& operator>>(std::istream& o, ARDOUR::SampleFormat& sf);
std::istream& operator>>(std::istream& o, ARDOUR::HeaderFormat& sf);
@@ -254,7 +261,6 @@ session_frame_to_track_frame (jack_nframes_t session_frame, double speed)
return (jack_nframes_t)( (double)session_frame * speed );
}
-
static inline jack_nframes_t
track_frame_to_session_frame (jack_nframes_t track_frame, double speed)
{