Lines Matching defs:ops

63 	snd_pcm_rate_ops_t ops;
420 err = rate->ops.init(rate->obj, &rate->info);
470 if (rate->ops.free)
471 rate->ops.free(rate->obj);
484 if (rate->ops.free)
485 rate->ops.free(rate->obj);
532 if (rate->ops.adjust_pitch)
533 rate->ops.adjust_pitch(rate->obj, &rate->info);
561 if (rate->ops.reset)
562 rate->ops.reset(rate->obj);
595 if (rate->ops.convert)
596 rate->ops.convert(rate->obj, out_areas, out_offset, dst_frames,
599 rate->ops.convert_s16(rate->obj,
662 rate->ops.input_frames(rate->obj, last_slave_hw_ptr_frac) +
663 rate->ops.input_frames(rate->obj, (last_slave_hw_ptr_frac + slave_hw_ptr_diff) % rate->gen.slave->period_size));
706 *delayp = rate->ops.input_frames(rate->obj, slave_delay)
709 *delayp = rate->ops.output_frames(rate->obj, slave_delay)
1156 spsize = rate->ops.output_frames(rate->obj, size);
1239 status->delay = rate->ops.input_frames(rate->obj, status->delay)
1242 status->avail_max = rate->ops.input_frames(rate->obj, status->avail_max);
1244 status->delay = rate->ops.output_frames(rate->obj, status->delay)
1247 status->avail_max = rate->ops.output_frames(rate->obj, status->avail_max);
1262 if (rate->ops.dump)
1263 rate->ops.dump(rate->obj, out);
1277 if (rate->ops.close)
1278 rate->ops.close(rate->obj);
1296 sframes = rate->ops.output_frames(rate->obj, frames);
1298 sframes = rate->ops.input_frames(rate->obj, frames);
1374 rate->plugin_version = rate->ops.version;
1377 rate->ops.get_supported_rates)
1378 rate->ops.get_supported_rates(rate->obj,
1383 rate->ops.get_supported_formats) {
1384 rate->ops.get_supported_formats(rate->obj,
1388 } else if (!rate->ops.convert && rate->ops.convert_s16) {
1423 &rate->obj, &rate->ops, converter_conf);
1439 err = open_func(SND_PCM_RATE_PLUGIN_VERSION, &rate->obj, &rate->ops);
1446 &rate->obj, &rate->ops);
1506 extern int SND_PCM_RATE_PLUGIN_ENTRY(linear) (unsigned int version, void **objp, snd_pcm_rate_ops_t *ops);
1589 err = open_func(SND_PCM_RATE_PLUGIN_VERSION, &rate->obj, &rate->ops);
1597 if (! rate->ops.init || ! (rate->ops.convert || rate->ops.convert_s16) ||
1598 ! rate->ops.input_frames || ! rate->ops.output_frames) {
1607 pcm->ops = &snd_pcm_rate_ops;