looks like i forgot about commits

This commit is contained in:
itten
2026-06-25 12:43:53 +03:00
parent 49ead70b10
commit 51a1b1b2c8
8 changed files with 445 additions and 3 deletions
+3 -3
View File
@@ -39,11 +39,11 @@ static std::string gen_uuid() {
static dmf::FlowGraph build_graph() {
dmf::FlowGraph g;
g.nodes = {
{ "testpattern", "testpattern", {} },
{ "fakesink", "fakesink", {} },
{ "ndiin", "ndiin", {} },
{ "fakesink", "fakesink", {}},
};
g.edges = {
{ gen_uuid(), "testpattern", "flow_id", "fakesink", "flow_id",
{ gen_uuid(), "ndiin", "flow_id", "fakesink", "flow_id",
{ {"kind","video"}, {"width",1920}, {"height",1080}, {"fps_num",25}, {"fps_den",1} } },
};
return g;