Comments.
authorCarl Hetherington <carl@carlh.net>
Mon, 26 Dec 2011 12:50:24 +0000 (12:50 +0000)
committerCarl Hetherington <carl@carlh.net>
Mon, 26 Dec 2011 12:50:24 +0000 (12:50 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@11070 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/ardour/types.h
libs/ardour/io.cc

index d5189622884b8580eb493a0e90e16ec32881bad7..ef2e51e70f5aeab0aae775293508d4c4304da23f 100644 (file)
@@ -353,9 +353,9 @@ namespace ARDOUR {
        };
 
        enum MonitorModel {
-               HardwareMonitoring,
-               SoftwareMonitoring,
-               ExternalMonitoring
+               HardwareMonitoring, ///< JACK does monitoring
+               SoftwareMonitoring, ///< Ardour does monitoring
+               ExternalMonitoring  ///< we leave monitoring to the audio hardware
        };
 
        enum MonitorChoice {
index 24bc587c0d4503a4fa52045bd9e6fc8883765a6c..aac2adf7849dbd25813cba9e67b3fb5aa472b33c 100644 (file)
@@ -1548,7 +1548,9 @@ IO::connected_to (const string& str) const
        return false;
 }
 
-/** Caller must hold process lock */
+/** Call a processor's ::run() method, giving it our buffers
+ *  Caller must hold process lock.
+ */
 void
 IO::process_input (boost::shared_ptr<Processor> proc, framepos_t start_frame, framepos_t end_frame, pframes_t nframes)
 {