Home
last modified time | relevance | path

Searched refs:bi (Results 1 – 2 of 2) sorted by relevance

/RvlSDK-3.2.2/build/demos/videmo/src/
Dbmp.c52 BOOL openBmp(bmpInfo_s* bi, u8* header) in openBmp() argument
62 bi->biSizeImage = REV32(*(u32*)(header + 0x02)); in openBmp()
63 bi->bfOffBits = REV32(*(u32*)(header + 0x0a)); in openBmp()
67 bi->width = REV32(*(u32*)(bInfoHeader + 0x04)); in openBmp()
68 bi->height = REV32(*(u32*)(bInfoHeader + 0x08)); in openBmp()
69 bi->biBitCount = REV16(*(u16*)(bInfoHeader + 0x0e)); in openBmp()
70 bi->biCompression = REV32(*(u32*)(bInfoHeader + 0x10)); in openBmp()
72 bi->paletteOff = 0x0e + REV32(*(u32*)(bInfoHeader)); in openBmp()
74 if (bi->biBitCount == 24) in openBmp()
77 assert(bi->bfOffBits == bi->paletteOff); in openBmp()
[all …]
/RvlSDK-3.2.2/build/demos/videmo/include/
Dbmp.h55 BOOL openBmp(bmpInfo_s* bi, u8* header);
58 BOOL bmpToYCbCr(bmpInfo_s* bi, u8* rawData, u8* dest1, u8* dest2);
60 BOOL bmpToYCbCr(bmpInfo_s* bi, u8* rawData, u8* dest);