Skip to content
Snippets Groups Projects
Commit 975435b7 authored by Patrick Godwin's avatar Patrick Godwin Committed by Madeline Wade
Browse files

pipeparts/condition.py: add missing args to func signatures

parent 4735370f
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ except KeyError as e:
raise
def mkcondition(pipeline, src, target_rate, instrument, psd = None, psd_fft_length = 32, ht_gate_threshold = float("inf"), veto_segments = None, nxydump_segment = None, track_psd = False, block_duration = 1 * Gst.SECOND, zero_pad = None, width = 64, statevector = None, dqvector = None, fir_whiten_reference_psd = None):
def mkcondition(pipeline, src, target_rate, instrument, psd = None, psd_fft_length = 32, ht_gate_threshold = float("inf"), veto_segments = None, nxydump_segment = None, track_psd = False, block_duration = 1 * Gst.SECOND, zero_pad = None, width = 64, statevector = None, dqvector = None, fir_whiten_reference_psd = None, track_latency = False):
"""
Build pipeline stage to whiten and downsample h(t).
......@@ -356,7 +356,7 @@ def mkcondition(pipeline, src, target_rate, instrument, psd = None, psd_fft_leng
return head
def mkmultiband(pipeline, head, rates, unit_normalize = True):
def mkmultiband(pipeline, head, rates, instrument = None, unit_normalize = True):
"""
Build pipeline stage to multiband a stream.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment