Blame view

src/common/stream_data.h 263 Bytes
09c2d08c   Hu Chunming   arm交付版
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  #ifndef _STREAM_DATA_H_
  #define _STREAM_DATA_H_
  
  #include <memory>
  
  struct ImageData {
      uint32_t width = 0;
      uint32_t height = 0;
      uint32_t alignWidth = 0;
      uint32_t alignHeight = 0;
      uint32_t size = 0;
      std::shared_ptr<uint8_t> data;
  };
  
  #endif