Skip to content

Commit 0e5b64a

Browse files
committed
Add method to determine if specttuner is running in early windowing mode
1 parent be2ffbd commit 0e5b64a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/include/sigutils/specttuner.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,13 @@ SU_METHOD(su_specttuner, void, force_state, enum sigutils_specttuner_state state
266266
self->state = state;
267267
}
268268

269+
SUINLINE
270+
SU_GETTER(su_specttuner, SUBOOL, uses_early_windowing)
271+
{
272+
return self->params.early_windowing;
273+
}
274+
275+
269276
#ifndef __cplusplus
270277

271278
/* Internal */

src/sigutils/specttuner.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,6 @@ __su_specttuner_feed_channel(
827827

828828
curr = channel->fft;
829829

830-
printf("Done, delivering %d/%d\n", channel->width, channel->size);
831830
return (channel->params.on_data)(
832831
channel,
833832
channel->params.privdata,

0 commit comments

Comments
 (0)