mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-02 09:01:48 -05:00
Finished lfloat plugin.
Added code to plug plugin to handle linear float / integer conversions.
This commit is contained in:
parent
4efc53523a
commit
095cbbb467
6 changed files with 339 additions and 119 deletions
|
|
@ -1877,7 +1877,7 @@ int snd_pcm_hw_refine_soft(snd_pcm_t *pcm ATTRIBUTE_UNUSED, snd_pcm_hw_params_t
|
|||
if (!doit)
|
||||
continue;
|
||||
#ifdef RULES_DEBUG
|
||||
snd_output_printf(log, "Rule %d: ", k);
|
||||
snd_output_printf(log, "Rule %d (%p): ", k, r->func);
|
||||
if (r->var >= 0) {
|
||||
snd_output_printf(log, "%s=", snd_pcm_hw_param_name(r->var));
|
||||
snd_pcm_hw_param_dump(params, r->var, log);
|
||||
|
|
@ -1888,9 +1888,8 @@ int snd_pcm_hw_refine_soft(snd_pcm_t *pcm ATTRIBUTE_UNUSED, snd_pcm_hw_params_t
|
|||
#ifdef RULES_DEBUG
|
||||
if (r->var >= 0)
|
||||
snd_pcm_hw_param_dump(params, r->var, log);
|
||||
snd_output_putc(log, ' ');
|
||||
for (d = 0; r->deps[d] >= 0; d++) {
|
||||
snd_output_printf(log, "%s=", snd_pcm_hw_param_name(r->deps[d]));
|
||||
snd_output_printf(log, " %s=", snd_pcm_hw_param_name(r->deps[d]));
|
||||
snd_pcm_hw_param_dump(params, r->deps[d], log);
|
||||
}
|
||||
snd_output_putc(log, '\n');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue