two more debug trace options
[ardour.git] / gtk2_ardour / opts.cc
index cd45bed9ffff08a26dcc2104aa327523f05c92b3..c35927dad898c951f95afd85f59cf70a48b95578 100644 (file)
@@ -83,6 +83,7 @@ list_debug_options ()
        cerr << "\tMidiDiskstreamIO\n";
        cerr << "\tSnapBBT\n";
        cerr << "\tConfiguration\n";
+       cerr << "\tLatency\n";
 }
 
 static int
@@ -118,6 +119,10 @@ parse_debug_options (const char* str)
                        bits |= ARDOUR::DEBUG::SnapBBT;
                } else if (strncasecmp (p, "configuration", strlen (p)) == 0) {
                        bits |= ARDOUR::DEBUG::Configuration;
+               } else if (strncasecmp (p, "latency", strlen (p)) == 0) {
+                       bits |= ARDOUR::DEBUG::Latency;
+               } else if (strncasecmp (p, "processors", strlen (p)) == 0) {
+                       bits |= ARDOUR::DEBUG::Processors;
                }
 
                p = strtok_r (0, ",", &sp);