X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnuradio-core%2Fsrc%2Flib%2Ffilter%2Fqa_gr_fir_scc.cc;fp=gnuradio-core%2Fsrc%2Flib%2Ffilter%2Fqa_gr_fir_scc.cc;h=21e0da60eff23e5d2daa6bf5177721f9c33cd4e8;hb=27ada0c49b62a8b1151089cae976228b41575c3c;hp=1aea34fbb3fc9d19573d4054d3cf092527a2e9ae;hpb=272c44f10ebf9e2d7ac76fe00c87382a1c0f4f29;p=debian%2Fgnuradio diff --git a/gnuradio-core/src/lib/filter/qa_gr_fir_scc.cc b/gnuradio-core/src/lib/filter/qa_gr_fir_scc.cc index 1aea34fb..21e0da60 100644 --- a/gnuradio-core/src/lib/filter/qa_gr_fir_scc.cc +++ b/gnuradio-core/src/lib/filter/qa_gr_fir_scc.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2002 Free Software Foundation, Inc. + * Copyright 2002,2010 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -106,7 +106,10 @@ test_random_io (fir_maker_t maker) const int OUTPUT_LEN = 17; const int INPUT_LEN = MAX_TAPS + OUTPUT_LEN; - i_type input[INPUT_LEN]; + i_type input_raw[INPUT_LEN + 4*16/sizeof(i_type)]; + memset(input_raw, 0, sizeof(input_raw)); + i_type *input = &input_raw[2*16/sizeof(i_type)]; + o_type expected_output[OUTPUT_LEN]; o_type actual_output[OUTPUT_LEN]; tap_type taps[MAX_TAPS];