File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ int clipdetect_ff(float* input, int input_size)
125
125
return 0 ;
126
126
}
127
127
128
- int clone ()
128
+ int clone_ ()
129
129
{
130
130
static unsigned char clone_buffer [BUFSIZE ];
131
131
for (;;)
@@ -291,7 +291,7 @@ int main(int argc, char *argv[])
291
291
}
292
292
if (!strcmp (argv [1 ],"clone" ))
293
293
{
294
- clone ();
294
+ clone_ ();
295
295
}
296
296
if (!strcmp (argv [1 ],"limit_ff" ))
297
297
{
@@ -817,7 +817,7 @@ int main(int argc, char *argv[])
817
817
818
818
if (suboptimal ) fprintf (stderr ,"note: suboptimal rational resampler chosen.\n" );
819
819
820
- if (decimation == 1 && interpolation == 1 ) clone (); //copy input to output in this special case (and stick in this function).
820
+ if (decimation == 1 && interpolation == 1 ) clone_ (); //copy input to output in this special case (and stick in this function).
821
821
822
822
//Alloc output buffer
823
823
int resampler_output_buffer_size = (BUFSIZE * interpolation )/decimation ;
@@ -863,7 +863,7 @@ int main(int argc, char *argv[])
863
863
}
864
864
else fprintf (stderr ,"fractional_decimator_ff: window = %s\n" ,firdes_get_string_from_window (window ));
865
865
866
- if (rate == 1 ) clone (); //copy input to output in this special case (and stick in this function).
866
+ if (rate == 1 ) clone_ (); //copy input to output in this special case (and stick in this function).
867
867
868
868
//Generate filter taps
869
869
int taps_length = firdes_filter_len (transition_bw );
You can’t perform that action at this time.
0 commit comments