forked from poz/niksos
no crackles under higher cpu load (I really have to clean this up)
This commit is contained in:
parent
436b619927
commit
ec2573e7e7
1 changed files with 9 additions and 9 deletions
|
@ -139,9 +139,9 @@ in
|
|||
"pipewire/pipewire.conf.d/92-low-latency.conf".text = ''
|
||||
context.properties = {
|
||||
default.clock.rate = 48000
|
||||
default.clock.quantum = 64
|
||||
default.clock.min-quantum = 64
|
||||
default.clock.max-quantum = 64
|
||||
default.clock.quantum = 256
|
||||
default.clock.min-quantum = 256
|
||||
default.clock.max-quantum = 256
|
||||
}
|
||||
'';
|
||||
"pipewire/pipewire-pulse.d/92-low-latency.conf".source = json.generate "92-low-latency.conf" {
|
||||
|
@ -149,16 +149,16 @@ in
|
|||
{
|
||||
name = "libpipewire-module-protocol-pulse";
|
||||
args = {
|
||||
pulse.min.req = "64/48000";
|
||||
pulse.default.req = "64/48000";
|
||||
pulse.max.req = "64/48000";
|
||||
pulse.min.quantum = "64/48000";
|
||||
pulse.max.quantum = "64/48000";
|
||||
pulse.min.req = "256/48000";
|
||||
pulse.default.req = "256/48000";
|
||||
pulse.max.req = "256/48000";
|
||||
pulse.min.quantum = "256/48000";
|
||||
pulse.max.quantum = "256/48000";
|
||||
};
|
||||
}
|
||||
];
|
||||
stream.properties = {
|
||||
node.latency = "64/48000";
|
||||
node.latency = "256/48000";
|
||||
resample.quality = 1;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue