1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
- #ifndef __NVCUDAPROC_H
- #define __NVCUDAPROC_H
- typedef enum {
- COLOR_FORMAT_RGB,
- COLOR_FORMAT_BGR,
- } COLOR_FORMAT;
- void HandleEGLImage(void* pEGLImage);
- void mapEGLImage2Float(void* pEGLImage, int width, int height, COLOR_FORMAT color_format,
- void* cuda_buf, void* offsets,
- void* scales);
- void convertEglFrameIntToFloat(void* pEglFrame, int width, int height,
- COLOR_FORMAT color_format, void* cuda_buf,void* offsets,
- void* scales, void* pstream);
- #endif
|