Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions libvmaf/src/libvmaf.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,12 @@ static int flush_context_threaded(VmafContext *vmaf)
for (unsigned i = 0; i < rfe.cnt; i++) {
if (!(rfe.fex_ctx[i]->fex->flags & VMAF_FEATURE_EXTRACTOR_TEMPORAL))
continue;
/* CUDA feature extractors are flushed by the HAVE_CUDA block in
* flush_context(); flushing them here as well double-appends their
* final scores. */
if (rfe.fex_ctx[i]->fex->flags & VMAF_FEATURE_EXTRACTOR_CUDA)
continue;

err |= vmaf_feature_extractor_context_flush(rfe.fex_ctx[i],
vmaf->feature_collector);
}
Expand Down