Skip to content
Snippets Groups Projects
Commit d4e6d538 authored by Chad Hanna's avatar Chad Hanna
Browse files

lloidparts.py: tweak queue from previous merge. In full-scale offline testing...

lloidparts.py: tweak queue from previous merge. In full-scale offline testing it was found to be just a bit too small
parent 3181c991
No related branches found
No related tags found
No related merge requests found
Pipeline #395579 passed
......@@ -402,7 +402,7 @@ def mkLLOIDhoftToSnrSlices(pipeline, hoftdict, bank, control_snksrc = (None, Non
# FIXME: multiplying by bank_fragment.rate was added to
# fix queing problems with time-reversed templates, but
# is clearly *way* too much. find a better solution
queue_time = int((1 * fir_stride + int(math.ceil(bank.filter_length))) * Gst.SECOND) if bank.bank_type == "signal_model" else int((1 * fir_stride + int(math.ceil(bank.filter_length))) * bank_fragment.rate * Gst.SECOND)
queue_time = int((10 * fir_stride + int(math.ceil(bank.filter_length))) * Gst.SECOND) if bank.bank_type == "signal_model" else int((1 * fir_stride + int(math.ceil(bank.filter_length))) * bank_fragment.rate * Gst.SECOND)
branch_heads[bank_fragment.rate].add(mkLLOIDbranch(
pipeline,
pipeparts.mkqueue(pipeline, src, max_size_bytes = 0, max_size_buffers = 0, max_size_time = queue_time),
......
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