diff --git a/components/codecs/include/ftl/codecs/channels.hpp b/components/codecs/include/ftl/codecs/channels.hpp index 7a7ab95c30a78c552253289c89267150b6f1e518..22c98d572b88201c4ee3b23b6c7205f5ae10f06d 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; };