diff options
author | John Glover <j@johnglover.net> | 2012-09-11 16:20:14 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-09-11 16:20:14 +0200 |
commit | 309ff462d17c5cdd8446da9d06f0e50a2b5da724 (patch) | |
tree | 030c0f7d0a5aec7c53ff45c01742ec7cfb564f77 /src | |
parent | b85442ba775a54464772af9f2f653e4aba2caae6 (diff) | |
download | simpl-309ff462d17c5cdd8446da9d06f0e50a2b5da724.tar.gz simpl-309ff462d17c5cdd8446da9d06f0e50a2b5da724.tar.bz2 simpl-309ff462d17c5cdd8446da9d06f0e50a2b5da724.zip |
[base] Add warning for potential data loss when
the max peaks/partials in a frame is changed.
Diffstat (limited to 'src')
-rw-r--r-- | src/simpl/base.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp index ac4d120..c2289ba 100644 --- a/src/simpl/base.cpp +++ b/src/simpl/base.cpp @@ -127,8 +127,10 @@ int Frame::max_peaks() { void Frame::max_peaks(int new_max_peaks) { _max_peaks = new_max_peaks; - // TODO: potentially losing data here, should prevent or complain - if((int)_peaks.size() > _max_peaks) { + if(_num_peaks > _max_peaks) { + // losing data here, allow but warn + printf("Warning: max peaks changed to less than current number " + "of peaks, some existing data was lost.\n"); _peaks.resize(_max_peaks); } } @@ -164,8 +166,10 @@ int Frame::max_partials() { void Frame::max_partials(int new_max_partials) { _max_partials = new_max_partials; - // TODO: potentially losing data here, should prevent or complain - if((int)_partials.size() > _max_partials) { + if(_num_partials > _max_partials) { + // losing data here, allow but warn + printf("Warning: max partials changed to less than current number" + " of partials, some existing data was lost.\n"); _partials.resize(_max_partials); } } |