this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add CVPixelBuffer.h

+75
+75
src/frameworks/CoreVideo/include/CoreVideo/CVPixelBuffer.h
··· 1 + #ifndef CVPIXELBUFFER_H 2 + #define CVPIXELBUFFER_H 3 + 4 + enum 5 + { 6 + kCVPixelFormatType_1Monochrome = 0x00000001, 7 + kCVPixelFormatType_2Indexed = 0x00000002, 8 + kCVPixelFormatType_4Indexed = 0x00000004, 9 + kCVPixelFormatType_8Indexed = 0x00000008, 10 + kCVPixelFormatType_1IndexedGray_WhiteIsZero = 0x00000021, 11 + kCVPixelFormatType_2IndexedGray_WhiteIsZero = 0x00000022, 12 + kCVPixelFormatType_4IndexedGray_WhiteIsZero = 0x00000024, 13 + kCVPixelFormatType_8IndexedGray_WhiteIsZero = 0x00000028, 14 + kCVPixelFormatType_16BE555 = 0x00000010, 15 + kCVPixelFormatType_16LE555 = 'L555', 16 + kCVPixelFormatType_16LE5551 = '5551', 17 + kCVPixelFormatType_16BE565 = 'B565', 18 + kCVPixelFormatType_16LE565 = 'L565', 19 + kCVPixelFormatType_24RGB = 0x00000018, 20 + kCVPixelFormatType_24BGR = '24BG', 21 + kCVPixelFormatType_32ARGB = 0x00000020, 22 + kCVPixelFormatType_32BGRA = 'BGRA', 23 + kCVPixelFormatType_32ABGR = 'ABGR', 24 + kCVPixelFormatType_32RGBA = 'RGBA', 25 + kCVPixelFormatType_64ARGB = 'b64a', 26 + kCVPixelFormatType_48RGB = 'b48r', 27 + kCVPixelFormatType_32AlphaGray = 'b32a', 28 + kCVPixelFormatType_16Gray = 'b16g', 29 + kCVPixelFormatType_30RGB = 'R10k', 30 + kCVPixelFormatType_422YpCbCr8 = '2vuy', 31 + kCVPixelFormatType_4444YpCbCrA8 = 'v408', 32 + kCVPixelFormatType_4444YpCbCrA8R = 'r408', 33 + kCVPixelFormatType_4444AYpCbCr8 = 'y408', 34 + kCVPixelFormatType_4444AYpCbCr16 = 'y416', 35 + kCVPixelFormatType_444YpCbCr8 = 'v308', 36 + kCVPixelFormatType_422YpCbCr16 = 'v216', 37 + kCVPixelFormatType_422YpCbCr10 = 'v210', 38 + kCVPixelFormatType_444YpCbCr10 = 'v410', 39 + kCVPixelFormatType_420YpCbCr8Planar = 'y420', 40 + kCVPixelFormatType_420YpCbCr8PlanarFullRange = 'f420', 41 + kCVPixelFormatType_422YpCbCr_4A_8BiPlanar = 'a2vy', 42 + kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange = '420v', 43 + kCVPixelFormatType_420YpCbCr8BiPlanarFullRange = '420f', 44 + kCVPixelFormatType_422YpCbCr8_yuvs = 'yuvs', 45 + kCVPixelFormatType_422YpCbCr8FullRange = 'yuvf', 46 + kCVPixelFormatType_OneComponent8 = 'L008', 47 + kCVPixelFormatType_TwoComponent8 = '2C08', 48 + kCVPixelFormatType_30RGBLEPackedWideGamut = 'w30r', 49 + kCVPixelFormatType_ARGB2101010LEPacked = 'l10r', 50 + kCVPixelFormatType_OneComponent16Half = 'L00h', 51 + kCVPixelFormatType_OneComponent32Float = 'L00f', 52 + kCVPixelFormatType_TwoComponent16Half = '2C0h', 53 + kCVPixelFormatType_TwoComponent32Float = '2C0f', 54 + kCVPixelFormatType_64RGBAHalf = 'RGhA', 55 + kCVPixelFormatType_128RGBAFloat = 'RGfA', 56 + kCVPixelFormatType_14Bayer_GRBG = 'grb4', 57 + kCVPixelFormatType_14Bayer_RGGB = 'rgg4', 58 + kCVPixelFormatType_14Bayer_BGGR = 'bgg4', 59 + kCVPixelFormatType_14Bayer_GBRG = 'gbr4', 60 + kCVPixelFormatType_DisparityFloat16 = 'hdis', 61 + kCVPixelFormatType_DisparityFloat32 = 'fdis', 62 + kCVPixelFormatType_DepthFloat16 = 'hdep', 63 + kCVPixelFormatType_DepthFloat32 = 'fdep', 64 + kCVPixelFormatType_420YpCbCr10BiPlanarVideoRange = 'x420', 65 + kCVPixelFormatType_422YpCbCr10BiPlanarVideoRange = 'x422', 66 + kCVPixelFormatType_444YpCbCr10BiPlanarVideoRange = 'x444', 67 + kCVPixelFormatType_420YpCbCr10BiPlanarFullRange = 'xf20', 68 + kCVPixelFormatType_422YpCbCr10BiPlanarFullRange = 'xf22', 69 + kCVPixelFormatType_444YpCbCr10BiPlanarFullRange = 'xf44', 70 + kCVPixelFormatType_420YpCbCr8VideoRange_8A_TriPlanar = 'v0a8', 71 + }; 72 + 73 + // TODO: This header file is incomplete 74 + 75 + #endif