remove some debug output

This commit is contained in:
Paul Davis 2021-07-22 18:04:15 -06:00
parent f00e5f3c16
commit e7cdca1ea2

View file

@ -233,7 +233,7 @@ timecnt_t::string_to (std::string const & str)
ss >> sm; ss >> sm;
_distance = int62_t (false, samples_to_superclock (sm, TEMPORAL_SAMPLE_RATE)); _distance = int62_t (false, samples_to_superclock (sm, TEMPORAL_SAMPLE_RATE));
_position = timepos_t (AudioTime); _position = timepos_t (AudioTime);
std::cerr << "deserialized timecnt from older " << str << " as " << *this << std::endl; // std::cerr << "deserialized timecnt from older " << str << " as " << *this << std::endl;
return true; return true;
} }
@ -861,7 +861,7 @@ timepos_t::string_to (std::string const & str)
std::stringstream ss (str); std::stringstream ss (str);
ss >> sm; ss >> sm;
v = build (false, samples_to_superclock (sm, TEMPORAL_SAMPLE_RATE)); v = build (false, samples_to_superclock (sm, TEMPORAL_SAMPLE_RATE));
cerr << "deserialized timepos from older " << str << " as " << *this << " with sm = " << sm << " and sr = " << TEMPORAL_SAMPLE_RATE << " s2sc " << endl; // cerr << "deserialized timepos from older " << str << " as " << *this << " with sm = " << sm << " and sr = " << TEMPORAL_SAMPLE_RATE << " s2sc " << endl;
return true; return true;
} }
@ -871,12 +871,12 @@ timepos_t::string_to (std::string const & str)
case 'a': case 'a':
ss >> s; ss >> s;
v = build (false, s); v = build (false, s);
cerr << "deserialized timepos from " << str << " as " << *this << endl; // cerr << "deserialized timepos from " << str << " as " << *this << endl;
return true; return true;
case 'b': case 'b':
ss >> ticks; ss >> ticks;
v = build (true, ticks); v = build (true, ticks);
cerr << "deserialized timepos from " << str << " as " << *this << endl; // cerr << "deserialized timepos from " << str << " as " << *this << endl;
return true; return true;
} }