From fd9e71d15d4023438deb51b043332d61f7f5207c Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Thu, 25 Feb 2016 00:18:13 -0800 Subject: Sort the pixel formats. (qsort() is your friend.) Change-Id: I71ab5fea0c8c0f548d737f5d5d1b7523b8a668ea Reviewed-on: https://code.wireshark.org/review/14137 Reviewed-by: Guy Harris --- epan/dissectors/packet-u3v.c | 680 +++++++++++++++++++++---------------------- 1 file changed, 340 insertions(+), 340 deletions(-) (limited to 'epan/dissectors/packet-u3v.c') diff --git a/epan/dissectors/packet-u3v.c b/epan/dissectors/packet-u3v.c index 7bf2df2ff0..de2f222e37 100644 --- a/epan/dissectors/packet-u3v.c +++ b/epan/dissectors/packet-u3v.c @@ -143,43 +143,45 @@ U3V descriptor constants /* * Pixel Format IDs */ +#define PFNC_U3V_MONO1P 0x01010037 +#define PFNC_U3V_CONFIDENCE1P 0x010100C5 +#define PFNC_U3V_MONO2P 0x01020038 +#define PFNC_U3V_MONO4P 0x01040039 #define PFNC_U3V_MONO8 0x01080001 #define PFNC_U3V_MONO8S 0x01080002 -#define PFNC_U3V_MONO10 0x01100003 -#define PFNC_U3V_MONO10PACKED 0x010C0004 -#define PFNC_U3V_MONO12 0x01100005 -#define PFNC_U3V_MONO12PACKED 0x010C0006 -#define PFNC_U3V_MONO16 0x01100007 #define PFNC_U3V_BAYERGR8 0x01080008 #define PFNC_U3V_BAYERRG8 0x01080009 #define PFNC_U3V_BAYERGB8 0x0108000A #define PFNC_U3V_BAYERBG8 0x0108000B -#define PFNC_U3V_BAYERGR10 0x0110000C -#define PFNC_U3V_BAYERRG10 0x0110000D -#define PFNC_U3V_BAYERGB10 0x0110000E -#define PFNC_U3V_BAYERBG10 0x0110000F -#define PFNC_U3V_BAYERGR12 0x01100010 -#define PFNC_U3V_BAYERRG12 0x01100011 -#define PFNC_U3V_BAYERGB12 0x01100012 -#define PFNC_U3V_BAYERBG12 0x01100013 -#define PFNC_U3V_RGB8 0x02180014 -#define PFNC_U3V_BGR8 0x02180015 -#define PFNC_U3V_RGBA8 0x02200016 -#define PFNC_U3V_BGRA8 0x02200017 -#define PFNC_U3V_RGB10 0x02300018 -#define PFNC_U3V_BGR10 0x02300019 -#define PFNC_U3V_RGB12 0x0230001A -#define PFNC_U3V_BGR12 0x0230001B -#define PFNC_U3V_RGB10V1PACKED 0x0220001C -#define PFNC_U3V_RGB10P32 0x0220001D -#define PFNC_U3V_YUV411_8_UYYVYY 0x020C001E -#define PFNC_U3V_YUV422_8_UYVY 0x0210001F -#define PFNC_U3V_YUV8_UYV 0x02180020 -#define PFNC_U3V_RGB8_PLANAR 0x02180021 -#define PFNC_U3V_RGB10_PLANAR 0x02300022 -#define PFNC_U3V_RGB12_PLANAR 0x02300023 -#define PFNC_U3V_RGB16_PLANAR 0x02300024 -#define PFNC_U3V_MONO14 0x01100025 +#define PFNC_U3V_SCF1WBWG8 0x01080067 +#define PFNC_U3V_SCF1WGWB8 0x0108006E +#define PFNC_U3V_SCF1WGWR8 0x01080075 +#define PFNC_U3V_SCF1WRWG8 0x0108007C +#define PFNC_U3V_COORD3D_A8 0x010800AF +#define PFNC_U3V_COORD3D_B8 0x010800B0 +#define PFNC_U3V_COORD3D_C8 0x010800B1 +#define PFNC_U3V_CONFIDENCE1 0x010800C4 +#define PFNC_U3V_CONFIDENCE8 0x010800C6 +#define PFNC_U3V_R8 0x010800C9 +#define PFNC_U3V_G8 0x010800CD +#define PFNC_U3V_B8 0x010800D1 +#define PFNC_U3V_MONO10P 0x010A0046 +#define PFNC_U3V_BAYERBG10P 0x010A0052 +#define PFNC_U3V_BAYERGB10P 0x010A0054 +#define PFNC_U3V_BAYERGR10P 0x010A0056 +#define PFNC_U3V_BAYERRG10P 0x010A0058 +#define PFNC_U3V_SCF1WBWG10P 0x010A0069 +#define PFNC_U3V_SCF1WGWB10P 0x010A0070 +#define PFNC_U3V_SCF1WGWR10P 0x010A0077 +#define PFNC_U3V_SCF1WRWG10P 0x010A007E +#define PFNC_U3V_R10 0x010A00CA +#define PFNC_U3V_G10 0x010A00CE +#define PFNC_U3V_B10 0x010A00D2 +#define PFNC_U3V_COORD3D_A10P 0x010A00D5 +#define PFNC_U3V_COORD3D_B10P 0x010A00D6 +#define PFNC_U3V_COORD3D_C10P 0x010A00D7 +#define PFNC_U3V_MONO10PACKED 0x010C0004 +#define PFNC_U3V_MONO12PACKED 0x010C0006 #define PFNC_U3V_BAYERGR10PACKED 0x010C0026 #define PFNC_U3V_BAYERRG10PACKED 0x010C0027 #define PFNC_U3V_BAYERGB10PACKED 0x010C0028 @@ -188,187 +190,185 @@ U3V descriptor constants #define PFNC_U3V_BAYERRG12PACKED 0x010C002B #define PFNC_U3V_BAYERGB12PACKED 0x010C002C #define PFNC_U3V_BAYERBG12PACKED 0x010C002D -#define PFNC_U3V_BAYERGR16 0x0110002E -#define PFNC_U3V_BAYERRG16 0x0110002F -#define PFNC_U3V_BAYERGB16 0x01100030 -#define PFNC_U3V_BAYERBG16 0x01100031 -#define PFNC_U3V_YUV422_8 0x02100032 -#define PFNC_U3V_RGB16 0x02300033 -#define PFNC_U3V_RGB12V1PACKED 0x02240034 -#define PFNC_U3V_RGB565P 0x02100035 -#define PFNC_U3V_BGR565P 0x02100036 -#define PFNC_U3V_MONO1P 0x01010037 -#define PFNC_U3V_MONO2P 0x01020038 -#define PFNC_U3V_MONO4P 0x01040039 -#define PFNC_U3V_YCBCR8_CBYCR 0x0218003A -#define PFNC_U3V_YCBCR422_8 0x0210003B -#define PFNC_U3V_YCBCR411_8_CBYYCRYY 0x020C003C -#define PFNC_U3V_YCBCR601_8_CBYCR 0x0218003D -#define PFNC_U3V_YCBCR601_422_8 0x0210003E -#define PFNC_U3V_YCBCR601_411_8_CBYYCRYY 0x020C003F -#define PFNC_U3V_YCBCR709_8_CBYCR 0x02180040 -#define PFNC_U3V_YCBCR709_422_8 0x02100041 -#define PFNC_U3V_YCBCR709_411_8_CBYYCRYY 0x020C0042 -#define PFNC_U3V_YCBCR422_8_CBYCRY 0x02100043 -#define PFNC_U3V_YCBCR601_422_8_CBYCRY 0x02100044 -#define PFNC_U3V_YCBCR709_422_8_CBYCRY 0x02100045 -#define PFNC_U3V_MONO10P 0x010A0046 #define PFNC_U3V_MONO12P 0x010C0047 -#define PFNC_U3V_BGR10P 0x021E0048 -#define PFNC_U3V_BGR12P 0x02240049 -#define PFNC_U3V_BGR14 0x0230004A -#define PFNC_U3V_BGR16 0x0230004B -#define PFNC_U3V_BGRA10 0x0240004C -#define PFNC_U3V_BGRA10P 0x0228004D -#define PFNC_U3V_BGRA12 0x0240004E -#define PFNC_U3V_BGRA12P 0x0230004F -#define PFNC_U3V_BGRA14 0x02400050 -#define PFNC_U3V_BGRA16 0x02400051 -#define PFNC_U3V_BAYERBG10P 0x010A0052 #define PFNC_U3V_BAYERBG12P 0x010C0053 -#define PFNC_U3V_BAYERGB10P 0x010A0054 #define PFNC_U3V_BAYERGB12P 0x010C0055 -#define PFNC_U3V_BAYERGR10P 0x010A0056 #define PFNC_U3V_BAYERGR12P 0x010C0057 -#define PFNC_U3V_BAYERRG10P 0x010A0058 #define PFNC_U3V_BAYERRG12P 0x010C0059 -#define PFNC_U3V_YCBCR411_8 0x020C005A -#define PFNC_U3V_YCBCR8 0x0218005B -#define PFNC_U3V_RGB10P 0x021E005C -#define PFNC_U3V_RGB12P 0x0224005D -#define PFNC_U3V_RGB14 0x0230005E -#define PFNC_U3V_RGBA10 0x0240005F -#define PFNC_U3V_RGBA10P 0x02280060 -#define PFNC_U3V_RGBA12 0x02400061 -#define PFNC_U3V_RGBA12P 0x02300062 -#define PFNC_U3V_RGBA14 0x02400063 -#define PFNC_U3V_RGBA16 0x02400064 -#define PFNC_U3V_YCBCR422_10 0x02200065 -#define PFNC_U3V_YCBCR422_12 0x02200066 -#define PFNC_U3V_SCF1WBWG8 0x01080067 +#define PFNC_U3V_SCF1WBWG12P 0x010C006B +#define PFNC_U3V_SCF1WGWB12P 0x010C0072 +#define PFNC_U3V_SCF1WGWR12P 0x010C0079 +#define PFNC_U3V_SCF1WRWG12P 0x010C0080 +#define PFNC_U3V_R12 0x010C00CB +#define PFNC_U3V_G12 0x010C00CF +#define PFNC_U3V_B12 0x010C00D3 +#define PFNC_U3V_COORD3D_A12P 0x010C00D8 +#define PFNC_U3V_COORD3D_B12P 0x010C00D9 +#define PFNC_U3V_COORD3D_C12P 0x010C00DA +#define PFNC_U3V_MONO10 0x01100003 +#define PFNC_U3V_MONO12 0x01100005 +#define PFNC_U3V_MONO16 0x01100007 +#define PFNC_U3V_BAYERGR10 0x0110000C +#define PFNC_U3V_BAYERRG10 0x0110000D +#define PFNC_U3V_BAYERGB10 0x0110000E +#define PFNC_U3V_BAYERBG10 0x0110000F +#define PFNC_U3V_BAYERGR12 0x01100010 +#define PFNC_U3V_BAYERRG12 0x01100011 +#define PFNC_U3V_BAYERGB12 0x01100012 +#define PFNC_U3V_BAYERBG12 0x01100013 +#define PFNC_U3V_MONO14 0x01100025 +#define PFNC_U3V_BAYERGR16 0x0110002E +#define PFNC_U3V_BAYERRG16 0x0110002F +#define PFNC_U3V_BAYERGB16 0x01100030 +#define PFNC_U3V_BAYERBG16 0x01100031 #define PFNC_U3V_SCF1WBWG10 0x01100068 -#define PFNC_U3V_SCF1WBWG10P 0x010A0069 #define PFNC_U3V_SCF1WBWG12 0x0110006A -#define PFNC_U3V_SCF1WBWG12P 0x010C006B #define PFNC_U3V_SCF1WBWG14 0x0110006C #define PFNC_U3V_SCF1WBWG16 0x0110006D -#define PFNC_U3V_SCF1WGWB8 0x0108006E #define PFNC_U3V_SCF1WGWB10 0x0110006F -#define PFNC_U3V_SCF1WGWB10P 0x010A0070 #define PFNC_U3V_SCF1WGWB12 0x01100071 -#define PFNC_U3V_SCF1WGWB12P 0x010C0072 #define PFNC_U3V_SCF1WGWB14 0x01100073 #define PFNC_U3V_SCF1WGWB16 0x01100074 -#define PFNC_U3V_SCF1WGWR8 0x01080075 #define PFNC_U3V_SCF1WGWR10 0x01100076 -#define PFNC_U3V_SCF1WGWR10P 0x010A0077 #define PFNC_U3V_SCF1WGWR12 0x01100078 -#define PFNC_U3V_SCF1WGWR12P 0x010C0079 #define PFNC_U3V_SCF1WGWR14 0x0110007A #define PFNC_U3V_SCF1WGWR16 0x0110007B -#define PFNC_U3V_SCF1WRWG8 0x0108007C #define PFNC_U3V_SCF1WRWG10 0x0110007D -#define PFNC_U3V_SCF1WRWG10P 0x010A007E #define PFNC_U3V_SCF1WRWG12 0x0110007F -#define PFNC_U3V_SCF1WRWG12P 0x010C0080 #define PFNC_U3V_SCF1WRWG14 0x01100081 #define PFNC_U3V_SCF1WRWG16 0x01100082 -#define PFNC_U3V_YCBCR10_CBYCR 0x02300083 -#define PFNC_U3V_YCBCR10P_CBYCR 0x021E0084 -#define PFNC_U3V_YCBCR12_CBYCR 0x02300085 -#define PFNC_U3V_YCBCR12P_CBYCR 0x02240086 +#define PFNC_U3V_COORD3D_A16 0x011000B6 +#define PFNC_U3V_COORD3D_B16 0x011000B7 +#define PFNC_U3V_COORD3D_C16 0x011000B8 +#define PFNC_U3V_CONFIDENCE16 0x011000C7 +#define PFNC_U3V_R16 0x011000CC +#define PFNC_U3V_G16 0x011000D0 +#define PFNC_U3V_B16 0x011000D4 +#define PFNC_U3V_COORD3D_A32F 0x012000BD +#define PFNC_U3V_COORD3D_B32F 0x012000BE +#define PFNC_U3V_COORD3D_C32F 0x012000BF +#define PFNC_U3V_CONFIDENCE32F 0x012000C8 +#define PFNC_U3V_YUV411_8_UYYVYY 0x020C001E +#define PFNC_U3V_YCBCR411_8_CBYYCRYY 0x020C003C +#define PFNC_U3V_YCBCR601_411_8_CBYYCRYY 0x020C003F +#define PFNC_U3V_YCBCR709_411_8_CBYYCRYY 0x020C0042 +#define PFNC_U3V_YCBCR411_8 0x020C005A +#define PFNC_U3V_YUV422_8_UYVY 0x0210001F +#define PFNC_U3V_YUV422_8 0x02100032 +#define PFNC_U3V_RGB565P 0x02100035 +#define PFNC_U3V_BGR565P 0x02100036 +#define PFNC_U3V_YCBCR422_8 0x0210003B +#define PFNC_U3V_YCBCR601_422_8 0x0210003E +#define PFNC_U3V_YCBCR709_422_8 0x02100041 +#define PFNC_U3V_YCBCR422_8_CBYCRY 0x02100043 +#define PFNC_U3V_YCBCR601_422_8_CBYCRY 0x02100044 +#define PFNC_U3V_YCBCR709_422_8_CBYCRY 0x02100045 +#define PFNC_U3V_BICOLORRGBG8 0x021000A5 +#define PFNC_U3V_BICOLORBGRG8 0x021000A6 +#define PFNC_U3V_COORD3D_AC8 0x021000B4 +#define PFNC_U3V_COORD3D_AC8_PLANAR 0x021000B5 #define PFNC_U3V_YCBCR422_10P 0x02140087 +#define PFNC_U3V_YCBCR601_422_10P 0x0214008E +#define PFNC_U3V_YCBCR709_422_10P 0x02140096 +#define PFNC_U3V_YCBCR422_10P_CBYCRY 0x0214009A +#define PFNC_U3V_YCBCR601_422_10P_CBYCRY 0x0214009E +#define PFNC_U3V_YCBCR709_422_10P_CBYCRY 0x021400A2 +#define PFNC_U3V_BICOLORRGBG10P 0x021400A8 +#define PFNC_U3V_BICOLORBGRG10P 0x021400AA +#define PFNC_U3V_COORD3D_AC10P 0x021400F0 +#define PFNC_U3V_COORD3D_AC10P_PLANAR 0x021400F1 +#define PFNC_U3V_RGB8 0x02180014 +#define PFNC_U3V_BGR8 0x02180015 +#define PFNC_U3V_YUV8_UYV 0x02180020 +#define PFNC_U3V_RGB8_PLANAR 0x02180021 +#define PFNC_U3V_YCBCR8_CBYCR 0x0218003A +#define PFNC_U3V_YCBCR601_8_CBYCR 0x0218003D +#define PFNC_U3V_YCBCR709_8_CBYCR 0x02180040 +#define PFNC_U3V_YCBCR8 0x0218005B #define PFNC_U3V_YCBCR422_12P 0x02180088 -#define PFNC_U3V_YCBCR601_10_CBYCR 0x02300089 +#define PFNC_U3V_YCBCR601_422_12P 0x02180090 +#define PFNC_U3V_YCBCR709_422_12P 0x02180098 +#define PFNC_U3V_YCBCR422_12P_CBYCRY 0x0218009C +#define PFNC_U3V_YCBCR601_422_12P_CBYCRY 0x021800A0 +#define PFNC_U3V_YCBCR709_422_12P_CBYCRY 0x021800A4 +#define PFNC_U3V_BICOLORRGBG12P 0x021800AC +#define PFNC_U3V_BICOLORBGRG12P 0x021800AE +#define PFNC_U3V_COORD3D_ABC8 0x021800B2 +#define PFNC_U3V_COORD3D_ABC8_PLANAR 0x021800B3 +#define PFNC_U3V_COORD3D_AC12P 0x021800F2 +#define PFNC_U3V_COORD3D_AC12P_PLANAR 0x021800F3 +#define PFNC_U3V_BGR10P 0x021E0048 +#define PFNC_U3V_RGB10P 0x021E005C +#define PFNC_U3V_YCBCR10P_CBYCR 0x021E0084 #define PFNC_U3V_YCBCR601_10P_CBYCR 0x021E008A -#define PFNC_U3V_YCBCR601_12_CBYCR 0x0230008B -#define PFNC_U3V_YCBCR601_12P_CBYCR 0x0224008C +#define PFNC_U3V_YCBCR709_10P_CBYCR 0x021E0092 +#define PFNC_U3V_COORD3D_ABC10P 0x021E00DB +#define PFNC_U3V_COORD3D_ABC10P_PLANAR 0x021E00DC +#define PFNC_U3V_RGBA8 0x02200016 +#define PFNC_U3V_BGRA8 0x02200017 +#define PFNC_U3V_RGB10V1PACKED 0x0220001C +#define PFNC_U3V_RGB10P32 0x0220001D +#define PFNC_U3V_YCBCR422_10 0x02200065 +#define PFNC_U3V_YCBCR422_12 0x02200066 #define PFNC_U3V_YCBCR601_422_10 0x0220008D -#define PFNC_U3V_YCBCR601_422_10P 0x0214008E #define PFNC_U3V_YCBCR601_422_12 0x0220008F -#define PFNC_U3V_YCBCR601_422_12P 0x02180090 -#define PFNC_U3V_YCBCR709_10_CBYCR 0x02300091 -#define PFNC_U3V_YCBCR709_10P_CBYCR 0x021E0092 -#define PFNC_U3V_YCBCR709_12_CBYCR 0x02300093 -#define PFNC_U3V_YCBCR709_12P_CBYCR 0x02240094 #define PFNC_U3V_YCBCR709_422_10 0x02200095 -#define PFNC_U3V_YCBCR709_422_10P 0x02140096 #define PFNC_U3V_YCBCR709_422_12 0x02200097 -#define PFNC_U3V_YCBCR709_422_12P 0x02180098 #define PFNC_U3V_YCBCR422_10_CBYCRY 0x02200099 -#define PFNC_U3V_YCBCR422_10P_CBYCRY 0x0214009A #define PFNC_U3V_YCBCR422_12_CBYCRY 0x0220009B -#define PFNC_U3V_YCBCR422_12P_CBYCRY 0x0218009C #define PFNC_U3V_YCBCR601_422_10_CBYCRY 0x0220009D -#define PFNC_U3V_YCBCR601_422_10P_CBYCRY 0x0214009E #define PFNC_U3V_YCBCR601_422_12_CBYCRY 0x0220009F -#define PFNC_U3V_YCBCR601_422_12P_CBYCRY 0x021800A0 #define PFNC_U3V_YCBCR709_422_10_CBYCRY 0x022000A1 -#define PFNC_U3V_YCBCR709_422_10P_CBYCRY 0x021400A2 #define PFNC_U3V_YCBCR709_422_12_CBYCRY 0x022000A3 -#define PFNC_U3V_YCBCR709_422_12P_CBYCRY 0x021800A4 -#define PFNC_U3V_BICOLORRGBG8 0x021000A5 -#define PFNC_U3V_BICOLORBGRG8 0x021000A6 #define PFNC_U3V_BICOLORRGBG10 0x022000A7 -#define PFNC_U3V_BICOLORRGBG10P 0x021400A8 #define PFNC_U3V_BICOLORBGRG10 0x022000A9 -#define PFNC_U3V_BICOLORBGRG10P 0x021400AA #define PFNC_U3V_BICOLORRGBG12 0x022000AB -#define PFNC_U3V_BICOLORRGBG12P 0x021800AC #define PFNC_U3V_BICOLORBGRG12 0x022000AD -#define PFNC_U3V_BICOLORBGRG12P 0x021800AE -#define PFNC_U3V_COORD3D_A8 0x010800AF -#define PFNC_U3V_COORD3D_B8 0x010800B0 -#define PFNC_U3V_COORD3D_C8 0x010800B1 -#define PFNC_U3V_COORD3D_ABC8 0x021800B2 -#define PFNC_U3V_COORD3D_ABC8_PLANAR 0x021800B3 -#define PFNC_U3V_COORD3D_AC8 0x021000B4 -#define PFNC_U3V_COORD3D_AC8_PLANAR 0x021000B5 -#define PFNC_U3V_COORD3D_A16 0x011000B6 -#define PFNC_U3V_COORD3D_B16 0x011000B7 -#define PFNC_U3V_COORD3D_C16 0x011000B8 -#define PFNC_U3V_COORD3D_ABC16 0x023000B9 -#define PFNC_U3V_COORD3D_ABC16_PLANAR 0x023000BA #define PFNC_U3V_COORD3D_AC16 0x022000BB #define PFNC_U3V_COORD3D_AC16_PLANAR 0x022000BC -#define PFNC_U3V_COORD3D_A32F 0x012000BD -#define PFNC_U3V_COORD3D_B32F 0x012000BE -#define PFNC_U3V_COORD3D_C32F 0x012000BF -#define PFNC_U3V_COORD3D_ABC32F 0x026000C0 -#define PFNC_U3V_COORD3D_ABC32F_PLANAR 0x026000C1 -#define PFNC_U3V_COORD3D_AC32F 0x024000C2 -#define PFNC_U3V_COORD3D_AC32F_PLANAR 0x024000C3 -#define PFNC_U3V_CONFIDENCE1 0x010800C4 -#define PFNC_U3V_CONFIDENCE1P 0x010100C5 -#define PFNC_U3V_CONFIDENCE8 0x010800C6 -#define PFNC_U3V_CONFIDENCE16 0x011000C7 -#define PFNC_U3V_CONFIDENCE32F 0x012000C8 -#define PFNC_U3V_R8 0x010800C9 -#define PFNC_U3V_R10 0x010A00CA -#define PFNC_U3V_R12 0x010C00CB -#define PFNC_U3V_R16 0x011000CC -#define PFNC_U3V_G8 0x010800CD -#define PFNC_U3V_G10 0x010A00CE -#define PFNC_U3V_G12 0x010C00CF -#define PFNC_U3V_G16 0x011000D0 -#define PFNC_U3V_B8 0x010800D1 -#define PFNC_U3V_B10 0x010A00D2 -#define PFNC_U3V_B12 0x010C00D3 -#define PFNC_U3V_B16 0x011000D4 -#define PFNC_U3V_COORD3D_A10P 0x010A00D5 -#define PFNC_U3V_COORD3D_B10P 0x010A00D6 -#define PFNC_U3V_COORD3D_C10P 0x010A00D7 -#define PFNC_U3V_COORD3D_A12P 0x010C00D8 -#define PFNC_U3V_COORD3D_B12P 0x010C00D9 -#define PFNC_U3V_COORD3D_C12P 0x010C00DA -#define PFNC_U3V_COORD3D_ABC10P 0x021E00DB -#define PFNC_U3V_COORD3D_ABC10P_PLANAR 0x021E00DC +#define PFNC_U3V_RGB12V1PACKED 0x02240034 +#define PFNC_U3V_BGR12P 0x02240049 +#define PFNC_U3V_RGB12P 0x0224005D +#define PFNC_U3V_YCBCR12P_CBYCR 0x02240086 +#define PFNC_U3V_YCBCR601_12P_CBYCR 0x0224008C +#define PFNC_U3V_YCBCR709_12P_CBYCR 0x02240094 #define PFNC_U3V_COORD3D_ABC12P 0x022400DE #define PFNC_U3V_COORD3D_ABC12P_PLANAR 0x022400DF -#define PFNC_U3V_COORD3D_AC10P 0x021400F0 -#define PFNC_U3V_COORD3D_AC10P_PLANAR 0x021400F1 -#define PFNC_U3V_COORD3D_AC12P 0x021800F2 -#define PFNC_U3V_COORD3D_AC12P_PLANAR 0x021800F3 +#define PFNC_U3V_BGRA10P 0x0228004D +#define PFNC_U3V_RGBA10P 0x02280060 +#define PFNC_U3V_RGB10 0x02300018 +#define PFNC_U3V_BGR10 0x02300019 +#define PFNC_U3V_RGB12 0x0230001A +#define PFNC_U3V_BGR12 0x0230001B +#define PFNC_U3V_RGB10_PLANAR 0x02300022 +#define PFNC_U3V_RGB12_PLANAR 0x02300023 +#define PFNC_U3V_RGB16_PLANAR 0x02300024 +#define PFNC_U3V_RGB16 0x02300033 +#define PFNC_U3V_BGR14 0x0230004A +#define PFNC_U3V_BGR16 0x0230004B +#define PFNC_U3V_BGRA12P 0x0230004F +#define PFNC_U3V_RGB14 0x0230005E +#define PFNC_U3V_RGBA12P 0x02300062 +#define PFNC_U3V_YCBCR10_CBYCR 0x02300083 +#define PFNC_U3V_YCBCR12_CBYCR 0x02300085 +#define PFNC_U3V_YCBCR601_10_CBYCR 0x02300089 +#define PFNC_U3V_YCBCR601_12_CBYCR 0x0230008B +#define PFNC_U3V_YCBCR709_10_CBYCR 0x02300091 +#define PFNC_U3V_YCBCR709_12_CBYCR 0x02300093 +#define PFNC_U3V_COORD3D_ABC16 0x023000B9 +#define PFNC_U3V_COORD3D_ABC16_PLANAR 0x023000BA +#define PFNC_U3V_BGRA10 0x0240004C +#define PFNC_U3V_BGRA12 0x0240004E +#define PFNC_U3V_BGRA14 0x02400050 +#define PFNC_U3V_BGRA16 0x02400051 +#define PFNC_U3V_RGBA10 0x0240005F +#define PFNC_U3V_RGBA12 0x02400061 +#define PFNC_U3V_RGBA14 0x02400063 +#define PFNC_U3V_RGBA16 0x02400064 +#define PFNC_U3V_COORD3D_AC32F 0x024000C2 +#define PFNC_U3V_COORD3D_AC32F_PLANAR 0x024000C3 +#define PFNC_U3V_COORD3D_ABC32F 0x026000C0 +#define PFNC_U3V_COORD3D_ABC32F_PLANAR 0x026000C1 /* Payload Types @@ -696,43 +696,45 @@ static const value_string bootstrap_register_names_eirm[] = static const value_string pixel_format_names[] = { + { PFNC_U3V_MONO1P, "Mono1p" }, + { PFNC_U3V_CONFIDENCE1P, "CONFIDENCE1p" }, + { PFNC_U3V_MONO2P, "Mono2p" }, + { PFNC_U3V_MONO4P, "Mono4p" }, { PFNC_U3V_MONO8, "Mono8" }, { PFNC_U3V_MONO8S, "Mono8s" }, - { PFNC_U3V_MONO10, "Mono10" }, - { PFNC_U3V_MONO10PACKED, "Mono10Packed" }, - { PFNC_U3V_MONO12, "Mono12" }, - { PFNC_U3V_MONO12PACKED, "Mono12Packed" }, - { PFNC_U3V_MONO16, "Mono16" }, { PFNC_U3V_BAYERGR8, "BayerGR8" }, { PFNC_U3V_BAYERRG8, "BayerRG8" }, { PFNC_U3V_BAYERGB8, "BayerGB8" }, { PFNC_U3V_BAYERBG8, "BayerBG8" }, - { PFNC_U3V_BAYERGR10, "BayerGR10" }, - { PFNC_U3V_BAYERRG10, "BayerRG10" }, - { PFNC_U3V_BAYERGB10, "BayerGB10" }, - { PFNC_U3V_BAYERBG10, "BayerBG10" }, - { PFNC_U3V_BAYERGR12, "BayerGR12" }, - { PFNC_U3V_BAYERRG12, "BayerRG12" }, - { PFNC_U3V_BAYERGB12, "BayerGB12" }, - { PFNC_U3V_BAYERBG12, "BayerBG12" }, - { PFNC_U3V_RGB8, "RGB8" }, - { PFNC_U3V_BGR8, "BGR8" }, - { PFNC_U3V_RGBA8, "RGBA8" }, - { PFNC_U3V_BGRA8, "BGRA8" }, - { PFNC_U3V_RGB10, "RGB10" }, - { PFNC_U3V_BGR10, "BGR10" }, - { PFNC_U3V_RGB12, "RGB12" }, - { PFNC_U3V_BGR12, "BGR12" }, - { PFNC_U3V_RGB10V1PACKED, "RGB10V1Packed" }, - { PFNC_U3V_RGB10P32, "RGB10P32" }, - { PFNC_U3V_YUV411_8_UYYVYY, "YUV411_8_UYYVYY" }, - { PFNC_U3V_YUV422_8_UYVY, "YUV422_8_UYVY" }, - { PFNC_U3V_YUV8_UYV, "YUV8_UYV" }, - { PFNC_U3V_RGB8_PLANAR, "RGB8_Planar" }, - { PFNC_U3V_RGB10_PLANAR, "RGB10_Planar" }, - { PFNC_U3V_RGB12_PLANAR, "RGB12_Planar" }, - { PFNC_U3V_RGB16_PLANAR, "RGB16_Planar" }, - { PFNC_U3V_MONO14, "Mono14" }, + { PFNC_U3V_SCF1WBWG8, "SCF1WBWG8" }, + { PFNC_U3V_SCF1WGWB8, "SCF1WGWB8" }, + { PFNC_U3V_SCF1WGWR8, "SCF1WGWR8" }, + { PFNC_U3V_SCF1WRWG8, "SCF1WRWG8" }, + { PFNC_U3V_COORD3D_A8, "Coord3D_A8" }, + { PFNC_U3V_COORD3D_B8, "Coord3D_B8" }, + { PFNC_U3V_COORD3D_C8, "Coord3D_C8" }, + { PFNC_U3V_CONFIDENCE1, "CONFIDENCE1" }, + { PFNC_U3V_CONFIDENCE8, "CONFIDENCE8" }, + { PFNC_U3V_R8, "R8" }, + { PFNC_U3V_G8, "G8" }, + { PFNC_U3V_B8, "B8" }, + { PFNC_U3V_MONO10P, "Mono10p" }, + { PFNC_U3V_BAYERBG10P, "BayerBG10p" }, + { PFNC_U3V_BAYERGB10P, "BayerGB10p" }, + { PFNC_U3V_BAYERGR10P, "BayerGR10p" }, + { PFNC_U3V_BAYERRG10P, "BayerRG10p" }, + { PFNC_U3V_SCF1WBWG10P, "SCF1WBWG10p" }, + { PFNC_U3V_SCF1WGWB10P, "SCF1WGWB10p" }, + { PFNC_U3V_SCF1WGWR10P, "SCF1WGWR10p" }, + { PFNC_U3V_SCF1WRWG10P, "SCF1WRWG10p" }, + { PFNC_U3V_R10, "R10" }, + { PFNC_U3V_G10, "G10" }, + { PFNC_U3V_B10, "B10" }, + { PFNC_U3V_COORD3D_A10P, "Coord3D_A10p" }, + { PFNC_U3V_COORD3D_B10P, "Coord3D_B10p" }, + { PFNC_U3V_COORD3D_C10P, "Coord3D_C10p" }, + { PFNC_U3V_MONO10PACKED, "Mono10Packed" }, + { PFNC_U3V_MONO12PACKED, "Mono12Packed" }, { PFNC_U3V_BAYERGR10PACKED, "BayerGR10Packed" }, { PFNC_U3V_BAYERRG10PACKED, "BayerRG10Packed" }, { PFNC_U3V_BAYERGB10PACKED, "BayerGB10Packed" }, @@ -741,187 +743,185 @@ static const value_string pixel_format_names[] = { PFNC_U3V_BAYERRG12PACKED, "BayerRG12Packed" }, { PFNC_U3V_BAYERGB12PACKED, "BayerGB12Packed" }, { PFNC_U3V_BAYERBG12PACKED, "BayerBG12Packed" }, - { PFNC_U3V_BAYERGR16, "BayerGR16" }, - { PFNC_U3V_BAYERRG16, "BayerRG16" }, - { PFNC_U3V_BAYERGB16, "BayerGB16" }, - { PFNC_U3V_BAYERBG16, "BayerBG16" }, - { PFNC_U3V_YUV422_8, "YUV422_8" }, - { PFNC_U3V_RGB16, "RGB16" }, - { PFNC_U3V_RGB12V1PACKED, "RGB12V1Packed" }, - { PFNC_U3V_RGB565P, "RGB565p" }, - { PFNC_U3V_BGR565P, "BGR565p" }, - { PFNC_U3V_MONO1P, "Mono1p" }, - { PFNC_U3V_MONO2P, "Mono2p" }, - { PFNC_U3V_MONO4P, "Mono4p" }, - { PFNC_U3V_YCBCR8_CBYCR, "YCbCr8_CBYCR" }, - { PFNC_U3V_YCBCR422_8, "YCbCr422_8" }, - { PFNC_U3V_YCBCR411_8_CBYYCRYY, "YCbCr411_8_CBYYCRYY" }, - { PFNC_U3V_YCBCR601_8_CBYCR, "YCbCr601_8_CBYCR" }, - { PFNC_U3V_YCBCR601_422_8, "YCbCr601_422_8" }, - { PFNC_U3V_YCBCR601_411_8_CBYYCRYY, "YCbCr601_411_8_CBYYCRYY" }, - { PFNC_U3V_YCBCR709_8_CBYCR, "YCbCr709_8_CBYCR" }, - { PFNC_U3V_YCBCR709_422_8, "YCbCr709_422_8" }, - { PFNC_U3V_YCBCR709_411_8_CBYYCRYY, "YCbCr709_411_8_CBYYCRYY" }, - { PFNC_U3V_YCBCR422_8_CBYCRY, "YCbCr422_8_CBYCRY" }, - { PFNC_U3V_YCBCR601_422_8_CBYCRY, "YCbCr601_422_8_CBYCRY" }, - { PFNC_U3V_YCBCR709_422_8_CBYCRY, "YCbCr709_422_8_CBYCRY" }, - { PFNC_U3V_MONO10P, "Mono10p" }, { PFNC_U3V_MONO12P, "Mono12p" }, - { PFNC_U3V_BGR10P, "BGR10p" }, - { PFNC_U3V_BGR12P, "BGR12p" }, - { PFNC_U3V_BGR14, "BGR14" }, - { PFNC_U3V_BGR16, "BGR16" }, - { PFNC_U3V_BGRA10, "BGRA10" }, - { PFNC_U3V_BGRA10P, "BGRA10p" }, - { PFNC_U3V_BGRA12, "BGRA12" }, - { PFNC_U3V_BGRA12P, "BGRA12p" }, - { PFNC_U3V_BGRA14, "BGRA14" }, - { PFNC_U3V_BGRA16, "BGRA16" }, - { PFNC_U3V_BAYERBG10P, "BayerBG10p" }, { PFNC_U3V_BAYERBG12P, "BayerBG12p" }, - { PFNC_U3V_BAYERGB10P, "BayerGB10p" }, { PFNC_U3V_BAYERGB12P, "BayerGB12p" }, - { PFNC_U3V_BAYERGR10P, "BayerGR10p" }, { PFNC_U3V_BAYERGR12P, "BayerGR12p" }, - { PFNC_U3V_BAYERRG10P, "BayerRG10p" }, { PFNC_U3V_BAYERRG12P, "BayerRG12p" }, - { PFNC_U3V_YCBCR411_8, "YCbCr411_8" }, - { PFNC_U3V_YCBCR8, "YCbCr8" }, - { PFNC_U3V_RGB10P, "RGB10p" }, - { PFNC_U3V_RGB12P, "RGB12p" }, - { PFNC_U3V_RGB14, "RGB14" }, - { PFNC_U3V_RGBA10, "RGBA10" }, - { PFNC_U3V_RGBA10P, "RGBA10p" }, - { PFNC_U3V_RGBA12, "RGBA12" }, - { PFNC_U3V_RGBA12P, "RGBA12p" }, - { PFNC_U3V_RGBA14, "RGBA14" }, - { PFNC_U3V_RGBA16, "RGBA16" }, - { PFNC_U3V_YCBCR422_10, "YCbCr422_10" }, - { PFNC_U3V_YCBCR422_12, "YCbCr422_12" }, - { PFNC_U3V_SCF1WBWG8, "SCF1WBWG8" }, + { PFNC_U3V_SCF1WBWG12P, "SCF1WBWG12p" }, + { PFNC_U3V_SCF1WGWB12P, "SCF1WGWB12p" }, + { PFNC_U3V_SCF1WGWR12P, "SCF1WGWR12p" }, + { PFNC_U3V_SCF1WRWG12P, "SCF1WRWG12p" }, + { PFNC_U3V_R12, "R12" }, + { PFNC_U3V_G12, "G12" }, + { PFNC_U3V_B12, "B12" }, + { PFNC_U3V_COORD3D_A12P, "Coord3D_A12p" }, + { PFNC_U3V_COORD3D_B12P, "Coord3D_B12p" }, + { PFNC_U3V_COORD3D_C12P, "Coord3D_C12p" }, + { PFNC_U3V_MONO10, "Mono10" }, + { PFNC_U3V_MONO12, "Mono12" }, + { PFNC_U3V_MONO16, "Mono16" }, + { PFNC_U3V_BAYERGR10, "BayerGR10" }, + { PFNC_U3V_BAYERRG10, "BayerRG10" }, + { PFNC_U3V_BAYERGB10, "BayerGB10" }, + { PFNC_U3V_BAYERBG10, "BayerBG10" }, + { PFNC_U3V_BAYERGR12, "BayerGR12" }, + { PFNC_U3V_BAYERRG12, "BayerRG12" }, + { PFNC_U3V_BAYERGB12, "BayerGB12" }, + { PFNC_U3V_BAYERBG12, "BayerBG12" }, + { PFNC_U3V_MONO14, "Mono14" }, + { PFNC_U3V_BAYERGR16, "BayerGR16" }, + { PFNC_U3V_BAYERRG16, "BayerRG16" }, + { PFNC_U3V_BAYERGB16, "BayerGB16" }, + { PFNC_U3V_BAYERBG16, "BayerBG16" }, { PFNC_U3V_SCF1WBWG10, "SCF1WBWG10" }, - { PFNC_U3V_SCF1WBWG10P, "SCF1WBWG10p" }, { PFNC_U3V_SCF1WBWG12, "SCF1WBWG12" }, - { PFNC_U3V_SCF1WBWG12P, "SCF1WBWG12p" }, { PFNC_U3V_SCF1WBWG14, "SCF1WBWG14" }, { PFNC_U3V_SCF1WBWG16, "SCF1WBWG16" }, - { PFNC_U3V_SCF1WGWB8, "SCF1WGWB8" }, { PFNC_U3V_SCF1WGWB10, "SCF1WGWB10" }, - { PFNC_U3V_SCF1WGWB10P, "SCF1WGWB10p" }, { PFNC_U3V_SCF1WGWB12, "SCF1WGWB12" }, - { PFNC_U3V_SCF1WGWB12P, "SCF1WGWB12p" }, { PFNC_U3V_SCF1WGWB14, "SCF1WGWB14" }, { PFNC_U3V_SCF1WGWB16, "SCF1WGWB16" }, - { PFNC_U3V_SCF1WGWR8, "SCF1WGWR8" }, { PFNC_U3V_SCF1WGWR10, "SCF1WGWR10" }, - { PFNC_U3V_SCF1WGWR10P, "SCF1WGWR10p" }, { PFNC_U3V_SCF1WGWR12, "SCF1WGWR12" }, - { PFNC_U3V_SCF1WGWR12P, "SCF1WGWR12p" }, { PFNC_U3V_SCF1WGWR14, "SCF1WGWR14" }, { PFNC_U3V_SCF1WGWR16, "SCF1WGWR16" }, - { PFNC_U3V_SCF1WRWG8, "SCF1WRWG8" }, { PFNC_U3V_SCF1WRWG10, "SCF1WRWG10" }, - { PFNC_U3V_SCF1WRWG10P, "SCF1WRWG10p" }, { PFNC_U3V_SCF1WRWG12, "SCF1WRWG12" }, - { PFNC_U3V_SCF1WRWG12P, "SCF1WRWG12p" }, { PFNC_U3V_SCF1WRWG14, "SCF1WRWG14" }, { PFNC_U3V_SCF1WRWG16, "SCF1WRWG16" }, - { PFNC_U3V_YCBCR10_CBYCR, "YCbCr10_CBYCR" }, - { PFNC_U3V_YCBCR10P_CBYCR, "YCbCr10P_CBYCR" }, - { PFNC_U3V_YCBCR12_CBYCR, "YCbCr12_CBYCR" }, - { PFNC_U3V_YCBCR12P_CBYCR, "YCbCr12P_CBYCR" }, + { PFNC_U3V_COORD3D_A16, "Coord3D_A16" }, + { PFNC_U3V_COORD3D_B16, "Coord3D_B16" }, + { PFNC_U3V_COORD3D_C16, "Coord3D_C16" }, + { PFNC_U3V_CONFIDENCE16, "CONFIDENCE16" }, + { PFNC_U3V_R16, "R16" }, + { PFNC_U3V_G16, "G16" }, + { PFNC_U3V_B16, "B16" }, + { PFNC_U3V_COORD3D_A32F, "Coord3D_A32F" }, + { PFNC_U3V_COORD3D_B32F, "Coord3D_B32F" }, + { PFNC_U3V_COORD3D_C32F, "Coord3D_C32F" }, + { PFNC_U3V_CONFIDENCE32F, "CONFIDENCE32F" }, + { PFNC_U3V_YUV411_8_UYYVYY, "YUV411_8_UYYVYY" }, + { PFNC_U3V_YCBCR411_8_CBYYCRYY, "YCbCr411_8_CBYYCRYY" }, + { PFNC_U3V_YCBCR601_411_8_CBYYCRYY, "YCbCr601_411_8_CBYYCRYY" }, + { PFNC_U3V_YCBCR709_411_8_CBYYCRYY, "YCbCr709_411_8_CBYYCRYY" }, + { PFNC_U3V_YCBCR411_8, "YCbCr411_8" }, + { PFNC_U3V_YUV422_8_UYVY, "YUV422_8_UYVY" }, + { PFNC_U3V_YUV422_8, "YUV422_8" }, + { PFNC_U3V_RGB565P, "RGB565p" }, + { PFNC_U3V_BGR565P, "BGR565p" }, + { PFNC_U3V_YCBCR422_8, "YCbCr422_8" }, + { PFNC_U3V_YCBCR601_422_8, "YCbCr601_422_8" }, + { PFNC_U3V_YCBCR709_422_8, "YCbCr709_422_8" }, + { PFNC_U3V_YCBCR422_8_CBYCRY, "YCbCr422_8_CBYCRY" }, + { PFNC_U3V_YCBCR601_422_8_CBYCRY, "YCbCr601_422_8_CBYCRY" }, + { PFNC_U3V_YCBCR709_422_8_CBYCRY, "YCbCr709_422_8_CBYCRY" }, + { PFNC_U3V_BICOLORRGBG8, "BICOLORRGBG8" }, + { PFNC_U3V_BICOLORBGRG8, "BICOLORBGRG8" }, + { PFNC_U3V_COORD3D_AC8, "Coord3D_AC8" }, + { PFNC_U3V_COORD3D_AC8_PLANAR, "Coord3D_AC8_Planar" }, { PFNC_U3V_YCBCR422_10P, "YCbCr422_10p" }, + { PFNC_U3V_YCBCR601_422_10P, "YCbCr601_422_10p" }, + { PFNC_U3V_YCBCR709_422_10P, "YCbCr709_422_10p" }, + { PFNC_U3V_YCBCR422_10P_CBYCRY, "YCbCr422_10P_CBYCRY" }, + { PFNC_U3V_YCBCR601_422_10P_CBYCRY, "YCbCr601_422_10P_CBYCRY" }, + { PFNC_U3V_YCBCR709_422_10P_CBYCRY, "YCbCr709_422_10P_CBYCRY" }, + { PFNC_U3V_BICOLORRGBG10P, "BICOLORRGBG10p" }, + { PFNC_U3V_BICOLORBGRG10P, "BICOLORBGRG10p" }, + { PFNC_U3V_COORD3D_AC10P, "Coord3D_AC10p" }, + { PFNC_U3V_COORD3D_AC10P_PLANAR, "Coord3D_AC10P_Planar" }, + { PFNC_U3V_RGB8, "RGB8" }, + { PFNC_U3V_BGR8, "BGR8" }, + { PFNC_U3V_YUV8_UYV, "YUV8_UYV" }, + { PFNC_U3V_RGB8_PLANAR, "RGB8_Planar" }, + { PFNC_U3V_YCBCR8_CBYCR, "YCbCr8_CBYCR" }, + { PFNC_U3V_YCBCR601_8_CBYCR, "YCbCr601_8_CBYCR" }, + { PFNC_U3V_YCBCR709_8_CBYCR, "YCbCr709_8_CBYCR" }, + { PFNC_U3V_YCBCR8, "YCbCr8" }, { PFNC_U3V_YCBCR422_12P, "YCbCr422_12p" }, - { PFNC_U3V_YCBCR601_10_CBYCR, "YCbCr601_10_CBYCR" }, + { PFNC_U3V_YCBCR601_422_12P, "YCbCr601_422_12p" }, + { PFNC_U3V_YCBCR709_422_12P, "YCbCr709_422_12p" }, + { PFNC_U3V_YCBCR422_12P_CBYCRY, "YCbCr422_12P_CBYCRY" }, + { PFNC_U3V_YCBCR601_422_12P_CBYCRY, "YCbCr601_422_12P_CBYCRY" }, + { PFNC_U3V_YCBCR709_422_12P_CBYCRY, "YCbCr709_422_12P_CBYCRY" }, + { PFNC_U3V_BICOLORRGBG12P, "BICOLORRGBG12p" }, + { PFNC_U3V_BICOLORBGRG12P, "BICOLORBGRG12p" }, + { PFNC_U3V_COORD3D_ABC8, "Coord3D_ABC8" }, + { PFNC_U3V_COORD3D_ABC8_PLANAR, "Coord3D_ABC8_Planar" }, + { PFNC_U3V_COORD3D_AC12P, "Coord3D_AC12p" }, + { PFNC_U3V_COORD3D_AC12P_PLANAR, "Coord3D_AC12P_Planar" }, + { PFNC_U3V_BGR10P, "BGR10p" }, + { PFNC_U3V_RGB10P, "RGB10p" }, + { PFNC_U3V_YCBCR10P_CBYCR, "YCbCr10P_CBYCR" }, { PFNC_U3V_YCBCR601_10P_CBYCR, "YCbCr601_10P_CBYCR" }, - { PFNC_U3V_YCBCR601_12_CBYCR, "YCbCr601_12_CBYCR" }, - { PFNC_U3V_YCBCR601_12P_CBYCR, "YCbCr601_12P_CBYCR" }, + { PFNC_U3V_YCBCR709_10P_CBYCR, "YCbCr709_10P_CBYCR" }, + { PFNC_U3V_COORD3D_ABC10P, "Coord3D_ABC10p" }, + { PFNC_U3V_COORD3D_ABC10P_PLANAR, "Coord3D_ABC10P_Planar" }, + { PFNC_U3V_RGBA8, "RGBA8" }, + { PFNC_U3V_BGRA8, "BGRA8" }, + { PFNC_U3V_RGB10V1PACKED, "RGB10V1Packed" }, + { PFNC_U3V_RGB10P32, "RGB10P32" }, + { PFNC_U3V_YCBCR422_10, "YCbCr422_10" }, + { PFNC_U3V_YCBCR422_12, "YCbCr422_12" }, { PFNC_U3V_YCBCR601_422_10, "YCbCr601_422_10" }, - { PFNC_U3V_YCBCR601_422_10P, "YCbCr601_422_10p" }, { PFNC_U3V_YCBCR601_422_12, "YCbCr601_422_12" }, - { PFNC_U3V_YCBCR601_422_12P, "YCbCr601_422_12p" }, - { PFNC_U3V_YCBCR709_10_CBYCR, "YCbCr709_10_CBYCR" }, - { PFNC_U3V_YCBCR709_10P_CBYCR, "YCbCr709_10P_CBYCR" }, - { PFNC_U3V_YCBCR709_12_CBYCR, "YCbCr709_12_CBYCR" }, - { PFNC_U3V_YCBCR709_12P_CBYCR, "YCbCr709_12P_CBYCR" }, { PFNC_U3V_YCBCR709_422_10, "YCbCr709_422_10" }, - { PFNC_U3V_YCBCR709_422_10P, "YCbCr709_422_10p" }, { PFNC_U3V_YCBCR709_422_12, "YCbCr709_422_12" }, - { PFNC_U3V_YCBCR709_422_12P, "YCbCr709_422_12p" }, { PFNC_U3V_YCBCR422_10_CBYCRY, "YCbCr422_10_CBYCRY" }, - { PFNC_U3V_YCBCR422_10P_CBYCRY, "YCbCr422_10P_CBYCRY" }, { PFNC_U3V_YCBCR422_12_CBYCRY, "YCbCr422_12_CBYCRY" }, - { PFNC_U3V_YCBCR422_12P_CBYCRY, "YCbCr422_12P_CBYCRY" }, { PFNC_U3V_YCBCR601_422_10_CBYCRY, "YCbCr601_422_10_CBYCRY" }, - { PFNC_U3V_YCBCR601_422_10P_CBYCRY, "YCbCr601_422_10P_CBYCRY" }, { PFNC_U3V_YCBCR601_422_12_CBYCRY, "YCbCr601_422_12_CBYCRY" }, - { PFNC_U3V_YCBCR601_422_12P_CBYCRY, "YCbCr601_422_12P_CBYCRY" }, { PFNC_U3V_YCBCR709_422_10_CBYCRY, "YCbCr709_422_10_CBYCRY" }, - { PFNC_U3V_YCBCR709_422_10P_CBYCRY, "YCbCr709_422_10P_CBYCRY" }, { PFNC_U3V_YCBCR709_422_12_CBYCRY, "YCbCr709_422_12_CBYCRY" }, - { PFNC_U3V_YCBCR709_422_12P_CBYCRY, "YCbCr709_422_12P_CBYCRY" }, - { PFNC_U3V_BICOLORRGBG8, "BICOLORRGBG8" }, - { PFNC_U3V_BICOLORBGRG8, "BICOLORBGRG8" }, { PFNC_U3V_BICOLORRGBG10, "BICOLORRGBG10" }, - { PFNC_U3V_BICOLORRGBG10P, "BICOLORRGBG10p" }, { PFNC_U3V_BICOLORBGRG10, "BICOLORBGRG10" }, - { PFNC_U3V_BICOLORBGRG10P, "BICOLORBGRG10p" }, { PFNC_U3V_BICOLORRGBG12, "BICOLORRGBG12" }, - { PFNC_U3V_BICOLORRGBG12P, "BICOLORRGBG12p" }, { PFNC_U3V_BICOLORBGRG12, "BICOLORBGRG12" }, - { PFNC_U3V_BICOLORBGRG12P, "BICOLORBGRG12p" }, - { PFNC_U3V_COORD3D_A8, "Coord3D_A8" }, - { PFNC_U3V_COORD3D_B8, "Coord3D_B8" }, - { PFNC_U3V_COORD3D_C8, "Coord3D_C8" }, - { PFNC_U3V_COORD3D_ABC8, "Coord3D_ABC8" }, - { PFNC_U3V_COORD3D_ABC8_PLANAR, "Coord3D_ABC8_Planar" }, - { PFNC_U3V_COORD3D_AC8, "Coord3D_AC8" }, - { PFNC_U3V_COORD3D_AC8_PLANAR, "Coord3D_AC8_Planar" }, - { PFNC_U3V_COORD3D_A16, "Coord3D_A16" }, - { PFNC_U3V_COORD3D_B16, "Coord3D_B16" }, - { PFNC_U3V_COORD3D_C16, "Coord3D_C16" }, - { PFNC_U3V_COORD3D_ABC16, "Coord3D_ABC16" }, - { PFNC_U3V_COORD3D_ABC16_PLANAR, "Coord3D_ABC16_Planar" }, { PFNC_U3V_COORD3D_AC16, "Coord3D_AC16" }, { PFNC_U3V_COORD3D_AC16_PLANAR, "Coord3D_AC16_Planar" }, - { PFNC_U3V_COORD3D_A32F, "Coord3D_A32F" }, - { PFNC_U3V_COORD3D_B32F, "Coord3D_B32F" }, - { PFNC_U3V_COORD3D_C32F, "Coord3D_C32F" }, - { PFNC_U3V_COORD3D_ABC32F, "Coord3D_ABC32F" }, - { PFNC_U3V_COORD3D_ABC32F_PLANAR, "Coord3D_ABC32F_Planar" }, - { PFNC_U3V_COORD3D_AC32F, "Coord3D_AC32F" }, - { PFNC_U3V_COORD3D_AC32F_PLANAR, "Coord3D_AC32F_Planar" }, - { PFNC_U3V_CONFIDENCE1, "CONFIDENCE1" }, - { PFNC_U3V_CONFIDENCE1P, "CONFIDENCE1p" }, - { PFNC_U3V_CONFIDENCE8, "CONFIDENCE8" }, - { PFNC_U3V_CONFIDENCE16, "CONFIDENCE16" }, - { PFNC_U3V_CONFIDENCE32F, "CONFIDENCE32F" }, - { PFNC_U3V_R8, "R8" }, - { PFNC_U3V_R10, "R10" }, - { PFNC_U3V_R12, "R12" }, - { PFNC_U3V_R16, "R16" }, - { PFNC_U3V_G8, "G8" }, - { PFNC_U3V_G10, "G10" }, - { PFNC_U3V_G12, "G12" }, - { PFNC_U3V_G16, "G16" }, - { PFNC_U3V_B8, "B8" }, - { PFNC_U3V_B10, "B10" }, - { PFNC_U3V_B12, "B12" }, - { PFNC_U3V_B16, "B16" }, - { PFNC_U3V_COORD3D_A10P, "Coord3D_A10p" }, - { PFNC_U3V_COORD3D_B10P, "Coord3D_B10p" }, - { PFNC_U3V_COORD3D_C10P, "Coord3D_C10p" }, - { PFNC_U3V_COORD3D_A12P, "Coord3D_A12p" }, - { PFNC_U3V_COORD3D_B12P, "Coord3D_B12p" }, - { PFNC_U3V_COORD3D_C12P, "Coord3D_C12p" }, - { PFNC_U3V_COORD3D_ABC10P, "Coord3D_ABC10p" }, - { PFNC_U3V_COORD3D_ABC10P_PLANAR, "Coord3D_ABC10P_Planar" }, + { PFNC_U3V_RGB12V1PACKED, "RGB12V1Packed" }, + { PFNC_U3V_BGR12P, "BGR12p" }, + { PFNC_U3V_RGB12P, "RGB12p" }, + { PFNC_U3V_YCBCR12P_CBYCR, "YCbCr12P_CBYCR" }, + { PFNC_U3V_YCBCR601_12P_CBYCR, "YCbCr601_12P_CBYCR" }, + { PFNC_U3V_YCBCR709_12P_CBYCR, "YCbCr709_12P_CBYCR" }, { PFNC_U3V_COORD3D_ABC12P, "Coord3D_ABC12p" }, { PFNC_U3V_COORD3D_ABC12P_PLANAR, "Coord3D_ABC12P_Planar" }, - { PFNC_U3V_COORD3D_AC10P, "Coord3D_AC10p" }, - { PFNC_U3V_COORD3D_AC10P_PLANAR, "Coord3D_AC10P_Planar" }, - { PFNC_U3V_COORD3D_AC12P, "Coord3D_AC12p" }, - { PFNC_U3V_COORD3D_AC12P_PLANAR, "Coord3D_AC12P_Planar" }, + { PFNC_U3V_BGRA10P, "BGRA10p" }, + { PFNC_U3V_RGBA10P, "RGBA10p" }, + { PFNC_U3V_RGB10, "RGB10" }, + { PFNC_U3V_BGR10, "BGR10" }, + { PFNC_U3V_RGB12, "RGB12" }, + { PFNC_U3V_BGR12, "BGR12" }, + { PFNC_U3V_RGB10_PLANAR, "RGB10_Planar" }, + { PFNC_U3V_RGB12_PLANAR, "RGB12_Planar" }, + { PFNC_U3V_RGB16_PLANAR, "RGB16_Planar" }, + { PFNC_U3V_RGB16, "RGB16" }, + { PFNC_U3V_BGR14, "BGR14" }, + { PFNC_U3V_BGR16, "BGR16" }, + { PFNC_U3V_BGRA12P, "BGRA12p" }, + { PFNC_U3V_RGB14, "RGB14" }, + { PFNC_U3V_RGBA12P, "RGBA12p" }, + { PFNC_U3V_YCBCR10_CBYCR, "YCbCr10_CBYCR" }, + { PFNC_U3V_YCBCR12_CBYCR, "YCbCr12_CBYCR" }, + { PFNC_U3V_YCBCR601_10_CBYCR, "YCbCr601_10_CBYCR" }, + { PFNC_U3V_YCBCR601_12_CBYCR, "YCbCr601_12_CBYCR" }, + { PFNC_U3V_YCBCR709_10_CBYCR, "YCbCr709_10_CBYCR" }, + { PFNC_U3V_YCBCR709_12_CBYCR, "YCbCr709_12_CBYCR" }, + { PFNC_U3V_COORD3D_ABC16, "Coord3D_ABC16" }, + { PFNC_U3V_COORD3D_ABC16_PLANAR, "Coord3D_ABC16_Planar" }, + { PFNC_U3V_BGRA10, "BGRA10" }, + { PFNC_U3V_BGRA12, "BGRA12" }, + { PFNC_U3V_BGRA14, "BGRA14" }, + { PFNC_U3V_BGRA16, "BGRA16" }, + { PFNC_U3V_RGBA10, "RGBA10" }, + { PFNC_U3V_RGBA12, "RGBA12" }, + { PFNC_U3V_RGBA14, "RGBA14" }, + { PFNC_U3V_RGBA16, "RGBA16" }, + { PFNC_U3V_COORD3D_AC32F, "Coord3D_AC32F" }, + { PFNC_U3V_COORD3D_AC32F_PLANAR, "Coord3D_AC32F_Planar" }, + { PFNC_U3V_COORD3D_ABC32F, "Coord3D_ABC32F" }, + { PFNC_U3V_COORD3D_ABC32F_PLANAR, "Coord3D_ABC32F_Planar" }, { 0, NULL } }; -- cgit v1.2.3