20 lines
475 B
C
20 lines
475 B
C
#ifndef VMF_SSM_INFO_H
|
|
#define VMF_SSM_INFO_H
|
|
#include <stdint.h>
|
|
/* Video source shared memory output info - fields accessed by app code */
|
|
typedef struct {
|
|
uint32_t dwWidth;
|
|
uint32_t dwHeight;
|
|
uint32_t dwStride;
|
|
uint32_t dwYStride;
|
|
uint32_t dwFormat;
|
|
uint32_t dwType;
|
|
uint32_t dwSize;
|
|
uint32_t dwYSize;
|
|
uint32_t dwUVSize;
|
|
uint32_t dwOffset[3];
|
|
uint32_t dwPhyAddr;
|
|
uint32_t dwReserved[4];
|
|
} VMF_VSRC_SSM_OUTPUT_INFO_T;
|
|
#endif
|