summaryrefslogtreecommitdiff
path: root/libs/evoral/src/SMF.cpp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-11-04 19:12:07 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-11-04 19:12:07 +0000
commita52c992de5319a53a0cf828f108b5a8c336a6b43 (patch)
tree49ad26e4ad913b70e9acfe9adecce0c1aa9c0f9c /libs/evoral/src/SMF.cpp
parent391e5214194a6ebebfbe4e3bb73b776ca1cea1d4 (diff)
remove debug output during note ID load & save
git-svn-id: svn://localhost/ardour2/branches/3.0@7966 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/src/SMF.cpp')
-rw-r--r--libs/evoral/src/SMF.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/evoral/src/SMF.cpp b/libs/evoral/src/SMF.cpp
index 2ba87397f0..021eadb25f 100644
--- a/libs/evoral/src/SMF.cpp
+++ b/libs/evoral/src/SMF.cpp
@@ -233,7 +233,6 @@ SMF::read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf, event_id_t* no
if (smf_extract_vlq (&event->midi_buffer[4+lenlen], event->midi_buffer_length-(4+lenlen), &id, &idlen) == 0) {
*note_id = id;
- cerr << "Loaded Note ID " << *note_id << endl;
}
}
}
@@ -298,7 +297,6 @@ SMF::append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf, eve
/* generate VLQ representation of note ID */
idlen = smf_format_vlq (idbuf, sizeof(idbuf), note_id);
- cerr << "Saved Note ID " << note_id << " is " << idlen << " bytes\n";
/* generate VLQ representation of meta event length,
which is the idlen + 2 bytes (Evoral type ID plus Note ID type)