1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 07:39:42 +02:00

Make one argument non-defaulted

This commit is contained in:
Paul Licameli 2020-11-28 14:37:02 -05:00
parent ad85755101
commit 82e8532ee5
2 changed files with 2 additions and 2 deletions

View File

@ -1204,7 +1204,7 @@ void WaveClip::AppendSharedBlock(const std::shared_ptr<SampleBlock> &pBlock)
-- Some prefix (maybe none) of the buffer is appended,
and no content already flushed to disk is lost. */
bool WaveClip::Append(samplePtr buffer, sampleFormat format,
size_t len, unsigned int stride /* = 1 */)
size_t len, unsigned int stride)
{
//wxLogDebug(wxT("Append: len=%lli"), (long long) len);
bool result = false;

View File

@ -287,7 +287,7 @@ public:
/// You must call Flush after the last Append
/// @return true if at least one complete block was created
bool Append(samplePtr buffer, sampleFormat format,
size_t len, unsigned int stride=1);
size_t len, unsigned int stride);
/// Flush must be called after last Append
void Flush();