Changeset 6360
- Timestamp:
- 02/05/08 16:26:19 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
components/RationalResamplerComplexShort/trunk/RationalResamplerComplexShort/RationalResamplerComplexShort.cpp
r6354 r6360 203 203 short i_out, q_out; 204 204 205 sample_count = (++sample_count) % D; 205 ++sample_count; // Do not combine these 206 sample_count = (sample_count) % D;// two lines. 206 207 207 208 DEBUG(9, RationalResamplerComplexShort, "Sample count = " << sample_count);