The overall abstract class is to represent video device, such as:
- Camera device
- Video Convertor device
- Video Encoder Device
- Video Decoder Device
Among them, a buffer struct is passing through. I call this buffer struct NvBuffer This is not the final name, and NvBuffer is widely used in many of Nvidia SDKs. This so-called buffer struct basic include those following things:
- a file-holder: fd, this is used to point the hardware memory (DMA)
- a user-space memory pointers (not a pointer but pointers to support multi-plane format)
- a kernel-space memory pointers
- information of the buffer, the size, order, pitch, color-depth, and so on.
- information of the color-format
- Timestamp(s)
the Buffer class in buffer.h is a good example, but the definitions is not straight-forward. A good way to refactor is to separate the definitions.
- buffer plane format class
- buffer plane parameter class
- buffer class
Notify that the buffer class is built based on v4l2-buffer structure. I will need to read more about v4l2-buffer.
An easy-to-use video process pipeline is the ultimate goal of this project. The code will be ease to read, string, a good example of modern C++ style and fits SOLID preconception.
- Video device abstruct class design
- Buffer class design
- Implement Camera device
- Implement Video convertor device
- Implement Video encoder device
- Implement Video decoder device
- Support more functions