Home
last modified time | relevance | path

Searched refs:tmp_taps (Results 1 – 25 of 26) sorted by relevance

12

/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-filter/lib/
H A Dpfb_synthesizer_ccf_impl.cc125 std::vector<float> tmp_taps = taps; in set_taps1() local
126 while ((float)(tmp_taps.size()) < d_numchans * d_taps_per_filter) { in set_taps1()
127 tmp_taps.push_back(0.0); in set_taps1()
136 tmp_taps[i + j * d_numchans]; // add taps to channels in reverse order in set_taps1()
168 std::vector<float> tmp_taps = taps; in set_taps2() local
169 while ((float)(tmp_taps.size()) < d_numchans * d_taps_per_filter) { in set_taps2()
170 tmp_taps.push_back(0.0); in set_taps2()
183 d_taps[d_numchans + i][j] = tmp_taps[i + j * d_numchans]; in set_taps2()
186 d_taps[i][j] = tmp_taps[i + j * d_numchans]; in set_taps2()
H A Dpfb_arb_resampler.cc111 std::vector<float> tmp_taps; in create_taps() local
112 tmp_taps = newtaps; in create_taps()
114 tmp_taps.push_back(0.0); in create_taps()
121 ourtaps[i][j] = tmp_taps[i + j * d_int_rate]; in create_taps()
309 std::vector<gr_complex> tmp_taps; in create_taps() local
310 tmp_taps = newtaps; in create_taps()
312 tmp_taps.push_back(0.0); in create_taps()
319 ourtaps[i][j] = tmp_taps[i + j * d_int_rate]; in create_taps()
510 std::vector<float> tmp_taps; in create_taps() local
511 tmp_taps = newtaps; in create_taps()
[all …]
H A Dpolyphase_filterbank.cc76 std::vector<float> tmp_taps = taps; in set_taps() local
77 while ((float)(tmp_taps.size()) < d_nfilts * d_taps_per_filter) { in set_taps()
78 tmp_taps.push_back(0.0); in set_taps()
86 d_taps[i][j] = tmp_taps[i + j * d_nfilts]; in set_taps()
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-digital/lib/
H A Dpfb_clock_sync_fff_impl.cc217 std::vector<float> tmp_taps; in set_taps() local
218 tmp_taps = newtaps; in set_taps()
219 while ((float)(tmp_taps.size()) < d_nfilters * d_taps_per_filter) { in set_taps()
220 tmp_taps.push_back(0.0); in set_taps()
228 ourtaps[i][j] = tmp_taps[i + j * d_nfilters]; in set_taps()
H A Dpfb_clock_sync_ccf_impl.cc232 std::vector<float> tmp_taps; in set_taps() local
233 tmp_taps = newtaps; in set_taps()
234 while ((float)(tmp_taps.size()) < d_nfilters * d_taps_per_filter) { in set_taps()
235 tmp_taps.push_back(0.0); in set_taps()
243 ourtaps[i][j] = tmp_taps[i + j * d_nfilters]; in set_taps()
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-dtv/lib/atsc/
H A Datsc_equalizer_impl.cc118 float tmp_taps[NTAPS]; in adaptN() local
119 volk_32f_s32f_multiply_32f(tmp_taps, &input_samples[j], BETA * e, NTAPS); in adaptN()
120 volk_32f_x2_subtract_32f(&d_taps[0], &d_taps[0], tmp_taps, NTAPS); in adaptN()
/dports/multimedia/gstreamer1-plugins-theora/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/multimedia/gstreamer1-plugins/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/audio/gstreamer1-plugins-vorbis/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/audio/gstreamer1-plugins-opus/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/audio/gstreamer1-plugins-ogg/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/graphics/gstreamer1-plugins-gl/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/audio/gstreamer1-plugins-cdparanoia/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/x11-toolkits/gstreamer1-plugins-pango/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/graphics/gstreamer1-plugins-libvisual/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member
H A Daudio-resampler.c223 convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
294 gdouble weight = 0.0, *tmp_taps = resampler->tmp_taps; in make_taps() local
308 weight += tmp_taps[i] = get_cubic_tap (x + i, resampler->n_taps, in make_taps()
314 weight += tmp_taps[i] = in make_taps()
321 weight += tmp_taps[i] = in make_taps()
326 resampler->convert_taps (tmp_taps, res, weight, n_taps); in make_taps()
979 resampler->tmp_taps = in alloc_taps_mem()
980 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_taps_mem()
998 resampler->tmp_taps = in alloc_cache_mem()
999 g_realloc_n (resampler->tmp_taps, n_taps, sizeof (gdouble)); in alloc_cache_mem()
[all …]
/dports/x11/gstreamer1-plugins-x/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Daudio-resampler-private.h43 typedef void (*ConvertTapsFunc) (gdouble * tmp_taps, gpointer taps,
76 gpointer tmp_taps; member

12