From e97a641ca48930f93b8709920b230b04fb8944a3 Mon Sep 17 00:00:00 2001 From: fiona-gladwin Date: Wed, 20 Mar 2024 10:19:14 -0400 Subject: [PATCH] Add Video flag for add node of Video loaders --- rocAL/include/pipeline/master_graph.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rocAL/include/pipeline/master_graph.h b/rocAL/include/pipeline/master_graph.h index dfe663d96..5b5cd4ade 100644 --- a/rocAL/include/pipeline/master_graph.h +++ b/rocAL/include/pipeline/master_graph.h @@ -351,6 +351,7 @@ inline std::shared_ptr MasterGraph::add_node(const std::vecto return node; } +#ifdef ROCAL_VIDEO /* * Explicit specialization for VideoLoaderNode */ @@ -389,3 +390,4 @@ inline std::shared_ptr MasterGraph::add_node(const s return node; } +#endif