diff --git a/csdr.c b/csdr.c index bde553e..05569c5 100644 --- a/csdr.c +++ b/csdr.c @@ -1987,10 +1987,10 @@ int main(int argc, char *argv[]) FEOF_CHECK; FREAD_C; //pll_cc(&pll, (complexf*)input_buffer, NULL, (complexf*)output_buffer, the_bufsize); - //fprintf(stderr, "| i"); - //pll_cc(&pll, (complexf*)input_buffer, output_buffer, NULL, the_bufsize); - pll_cc(&pll, (complexf*)input_buffer, NULL, (complexf*)output_buffer, the_bufsize); - fwrite(output_buffer, sizeof(complexf), the_bufsize, stdout); + // fprintf(stderr, "| i"); + pll_cc(&pll, (complexf*)input_buffer, output_buffer, NULL, the_bufsize); + //pll_cc(&pll, (complexf*)input_buffer, NULL, (complexf*)output_buffer, the_bufsize); + fwrite(output_buffer, sizeof(float), the_bufsize, stdout); //fprintf(stderr, "| o"); TRY_YIELD; }