remove ipmidi debugging
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 18 Jan 2016 21:57:50 +0000 (16:57 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 18 Jan 2016 21:57:50 +0000 (16:57 -0500)
libs/ardour/midi_ui.cc
libs/midi++2/ipmidi_port.cc

index 6b629aabd5b221ec3e71a4ffdf42f36b9d8eb867..1d2fe7c7e1b4a2b2b6fcdb02357c7f54a9231f2e 100644 (file)
@@ -85,9 +85,8 @@ bool
 MidiControlUI::midi_input_handler (IOCondition ioc, boost::shared_ptr<AsyncMIDIPort> port)
 {
        DEBUG_TRACE (DEBUG::MidiIO, string_compose ("something happend on  %1\n", boost::shared_ptr<ARDOUR::Port> (port)->name()));
-       cout << "Something happened on " << boost::shared_ptr<ARDOUR::Port> (port)->name() << " ioc = " << hex << ioc << dec << endl;
+
        if (ioc & ~IO_IN) {
-               cout << "....no input ... do nothing" << endl;
                return false;
        }
 
@@ -95,7 +94,6 @@ MidiControlUI::midi_input_handler (IOCondition ioc, boost::shared_ptr<AsyncMIDIP
 
                port->clear ();
                DEBUG_TRACE (DEBUG::MidiIO, string_compose ("data available on %1\n", boost::shared_ptr<ARDOUR::Port>(port)->name()));
-               cout << "....input appears ready\n";
                framepos_t now = _session.engine().sample_time();
                port->parse (now);
        }
index 4fb54a90bf540d04255719c0a58155eae95fdc43..faf846ff76ab873c42a71cb54fcd6ecd2898f14b 100644 (file)
@@ -321,10 +321,6 @@ IPMIDIPort::parse (framecnt_t timestamp)
        socklen_t slen = sizeof(sender);
        int r = ::recvfrom (sockin, (char *) buf, sizeof(buf), 0, (struct sockaddr *) &sender, &slen);
 
-       if (r != 18) {
-               cout << "IPMIDI: received from socket: " << r << endl;
-       }
-
        if (r >= 0) {
 
                _parser->set_timestamp (timestamp);