1238{
1239 wxString clips;
1240 const auto wt =
dynamic_cast<const WaveTrack*
>(t);
1241 if (!wt)
1242 return clips;
1244
1245
1246
1247 for (size_t i = 0, n = ca.size(); i < n; ++i)
1248 {
1249 if (i < 1000)
1250 {
1251 clips += wxString::Format(
1252 wxT(
"(list (float %s) (float %s))"),
1255 }
1256 else if (i == 1000)
1257 {
1258
1259
1260 clips += "NIL";
1261 }
1262 else if (i > 1000)
1263 {
1264 break;
1265 }
1266 }
1267 return clips;
1268};
static wxString ToString(double numberToConvert, int digitsAfterDecimalPoint=-1)
Convert a number to a string, always uses the dot as decimal separator.
A Track that contains audio waveform data.
IntervalHolders SortedIntervalArray()
Return all WaveClips sorted by clip play start time.