Lines Matching refs:io

281 		widget.d.io.formats & B_FMT_8BIT_S ? "8bits " : "",
282 widget.d.io.formats & B_FMT_16BIT ? "16bits " : "",
283 widget.d.io.formats & B_FMT_20BIT ? "20bits " : "",
284 widget.d.io.formats & B_FMT_24BIT ? "24bits " : "",
285 widget.d.io.formats & B_FMT_32BIT ? "32bits " : "",
286 widget.d.io.formats & B_FMT_FLOAT ? "float " : "",
287 widget.d.io.formats & B_FMT_DOUBLE ? "double " : "",
288 widget.d.io.formats & B_FMT_EXTENDED ? "extended " : "",
289 widget.d.io.formats & B_FMT_BITSTREAM ? "bitstream " : "");
291 widget.d.io.rates & B_SR_8000 ? "8khz " : "",
292 widget.d.io.rates & B_SR_11025 ? "11khz " : "",
293 widget.d.io.rates & B_SR_16000 ? "16khz " : "",
294 widget.d.io.rates & B_SR_22050 ? "22khz " : "",
295 widget.d.io.rates & B_SR_32000 ? "32khz " : "",
296 widget.d.io.rates & B_SR_44100 ? "44khz " : "",
297 widget.d.io.rates & B_SR_48000 ? "48khz " : "",
298 widget.d.io.rates & B_SR_88200 ? "88khz " : "",
299 widget.d.io.rates & B_SR_96000 ? "96khz " : "",
300 widget.d.io.rates & B_SR_176400 ? "176khz " : "",
301 widget.d.io.rates & B_SR_192000 ? "192khz " : "",
302 widget.d.io.rates & B_SR_384000 ? "384khz " : "");
490 widget->d.io.formats = audioGroup->widget.d.io.formats;
491 widget->d.io.rates = audioGroup->widget.d.io.rates;
496 &widget->d.io.formats, &widget->d.io.rates);
1429 || widget.d.io.formats == 0)
1433 stream->sample_format = widget.d.io.formats;
1434 stream->sample_rate = widget.d.io.rates;
1436 stream->sample_format &= widget.d.io.formats;
1437 stream->sample_rate &= widget.d.io.rates;