Skip to content
Snippets Groups Projects

Implements #211 scaling corrections on recv

Merged Nicolas Pope requested to merge feature/211/scaling into master
8 files
+ 80
7
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -36,7 +36,8 @@ enum struct Channel : int {
Configuration = 64, // JSON Data
Calibration = 65, // Camera Parameters Object
Pose = 66, // Eigen::Matrix4d
Data = 67 // Custom data, any codec.
Index = 67,
Data = 2048 // Custom data, any codec.
};
inline bool isVideo(Channel c) { return (int)c < 32; };
Loading