mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
remove some debug output
This commit is contained in:
parent
f00e5f3c16
commit
e7cdca1ea2
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue