plugins/score-plugin-gfx/Gfx/Video/Metadata.hpp
1 #pragma once
2 #include <Process/ProcessMetadata.hpp>
3 
4 namespace Gfx::Video
5 {
6 class Model;
7 }
8 
9 PROCESS_METADATA(
10  , Gfx::Video::Model, "32dc5341-7748-4c31-a226-82e6bd685744",
11  "video", // Internal name
12  "Video", // Pretty name
13  Process::ProcessCategory::Visual, // Category
14  "Visuals", // Category
15  "Display a video", // Description
16  "ossia team", // Author
17  (QStringList{"gfx", "video"}), // Tags
18  {}, // Inputs
19  {}, // Outputs
20  Process::ProcessFlags::SupportsTemporal | Process::ProcessFlags::PutInNewSlot
21  | Process::ProcessFlags::HandlesLooping // Flags
22 )
Definition: score-plugin-gfx/Gfx/Video/Process.hpp:17