Home
last modified time | relevance | path

Searched refs:width_type (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dbiquad.c39 char width_type = *allowed_width_types; in lsx_biquad_getopts() local
46 …(argc > width_pos && ((unsigned)(sscanf(argv[width_pos], "%lf%c %c", &p->width, &width_type, &dumm… in lsx_biquad_getopts()
48 !strchr(allowed_width_types, width_type) || (width_type == 's' && p->width > 1)) in lsx_biquad_getopts()
50 p->width_type = strchr(all_width_types, width_type) - all_width_types; in lsx_biquad_getopts()
51 if ((size_t)p->width_type >= strlen(all_width_types)) in lsx_biquad_getopts()
52 p->width_type = 0; in lsx_biquad_getopts()
53 if (p->width_type == width_bw_kHz) { in lsx_biquad_getopts()
55 p->width_type = width_bw_Hz; in lsx_biquad_getopts()
97 , effp->handler.name, p->gain, p->fc, width_str[p->width_type], p->width in lsx_biquad_start()
117 , effp->handler.name, p->gain, p->fc, width_str[p->width_type], p->width in lsx_biquad_start()
[all …]
H A Dbiquad.h60 width_t width_type; member
H A Dbiquads.c193 if (p->width) switch (p->width_type) { in start()
321 bw_Hz = p->width_type == width_Q? p->fc / p->width : in start()
322 p->width_type == width_bw_Hz? p->width : in start()