video_streamer
/build/rock-master-18.09-perception-orogen-video-streamer-0.20150421/video_streamer_types.hpp
Go to the documentation of this file.
1 #ifndef __VIDEO_STREAMER_TYPES_HPP__
2 #define __VIDEO_STREAMER_TYPES_HPP__
3 #include <vector>
4 #include <stdint.h>
5 
6 namespace video_streamer
7 {
8 
9 struct StreamData
10 {
11  //TODO add codec widht height etc
12  std::vector<uint8_t> data;
13 };
14 
15 }
16 
17 #endif
Definition: VideoDecoder.hpp:12
Definition: video_streamer_types.hpp:9
std::vector< uint8_t > data
Definition: video_streamer_types.hpp:12