1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-24 23:13:42 +02:00

Remove naked new[] in: linear algebra functions for Repair

This commit is contained in:
Paul Licameli
2017-02-21 19:36:32 -05:00
parent cb05476c45
commit f858d97352
4 changed files with 137 additions and 183 deletions

View File

@@ -35,7 +35,7 @@
// side (6x the number of bad samples on either side is great). However,
// it will work with less data, and with the bad samples on one end or
// the other.
void AUDACITY_DLL_API InterpolateAudio(float *buffer, int len,
int firstBad, int numBad);
void AUDACITY_DLL_API InterpolateAudio(float *buffer, size_t len,
size_t firstBad, size_t numBad);
#endif // __AUDACITY_INTERPOLATE_AUDIO__