From 5920af9901194400ade450b93cf972b85252f3a8 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Thu, 5 May 2022 16:49:15 -0700 Subject: [PATCH] fixed issue with audio failing to resolve Regression, particularly evident in footage viewer --- app/render/renderprocessor.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/render/renderprocessor.cpp b/app/render/renderprocessor.cpp index 7e3876f8d..ce1db8b41 100644 --- a/app/render/renderprocessor.cpp +++ b/app/render/renderprocessor.cpp @@ -191,7 +191,11 @@ void RenderProcessor::Run() table = GenerateTable(texture_output, viewer->GetValueHintForInput(ViewerOutput::kSamplesInput),time); } - QVariant sample_variant = table.Get(NodeValue::kSamples); + NodeValue sample_val = table.GetWithMeta(NodeValue::kSamples); + + ResolveJobs(sample_val, time); + + QVariant sample_variant = sample_val.data(); SampleBufferPtr samples = sample_variant.value(); if (samples && ticket_->property("enablewaveforms").toBool()) { AudioVisualWaveform vis;