From acffe120c1feb9a2e3635d31a0de8361a154404a Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nwpope@utu.fi> Date: Mon, 3 Feb 2020 10:36:23 +0200 Subject: [PATCH] Add some data channels --- components/codecs/include/ftl/codecs/channels.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/codecs/include/ftl/codecs/channels.hpp b/components/codecs/include/ftl/codecs/channels.hpp index 7a7ab95c3..22c98d572 100644 --- a/components/codecs/include/ftl/codecs/channels.hpp +++ b/components/codecs/include/ftl/codecs/channels.hpp @@ -48,7 +48,9 @@ enum struct Channel : int { Control = 69, // For stream and encoder control Settings3 = 70, - Data = 2048 // Custom data, any codec. + Data = 2048, // Custom data, any codec. + Faces = 2049, // Data about detected faces + Transforms = 2050 // Transformation matrices for framesets }; inline bool isVideo(Channel c) { return (int)c < 32; }; -- GitLab