]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/HiiImageDecoder.h
MdePkg ACPI: Correct processor struct of PPTT
[mirror_edk2.git] / MdePkg / Include / Protocol / HiiImageDecoder.h
CommitLineData
a48d0a3d
CS
1/** @file\r
2 This protocol provides generic image decoder interfaces to various image formats.\r
3\r
4(C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>\r
75f273d8 5 Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>\r
a48d0a3d
CS
6\r
7This program and the accompanying materials are licensed and made available under\r
8the terms and conditions of the BSD License that accompanies this distribution.\r
9The full text of the license may be found at\r
10http://opensource.org/licenses/bsd-license.php.\r
11\r
12THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15**/\r
75f273d8
RN
16#ifndef __HII_IMAGE_DECODER_H__\r
17#define __HII_IMAGE_DECODER_H__\r
a48d0a3d
CS
18\r
19#include <Protocol/HiiImage.h>\r
20\r
a48d0a3d 21#define EFI_HII_IMAGE_DECODER_PROTOCOL_GUID \\r
d35ec1e0 22 {0x9e66f251, 0x727c, 0x418c, { 0xbf, 0xd6, 0xc2, 0xb4, 0x25, 0x28, 0x18, 0xea }}\r
a48d0a3d
CS
23\r
24\r
25#define EFI_HII_IMAGE_DECODER_NAME_JPEG_GUID \\r
26 {0xefefd093, 0xd9b, 0x46eb, { 0xa8, 0x56, 0x48, 0x35, 0x7, 0x0, 0xc9, 0x8 }}\r
27\r
28#define EFI_HII_IMAGE_DECODER_NAME_PNG_GUID \\r
29 {0xaf060190, 0x5e3a, 0x4025, { 0xaf, 0xbd, 0xe1, 0xf9, 0x5, 0xbf, 0xaa, 0x4c }}\r
30\r
31typedef struct _EFI_HII_IMAGE_DECODER_PROTOCOL EFI_HII_IMAGE_DECODER_PROTOCOL;\r
32\r
33typedef enum {\r
34 EFI_HII_IMAGE_DECODER_COLOR_TYPE_RGB = 0x0,\r
35 EFI_HII_IMAGE_DECODER_COLOR_TYPE_RGBA = 0x1,\r
36 EFI_HII_IMAGE_DECODER_COLOR_TYPE_CMYK = 0x2,\r
37 EFI_HII_IMAGE_DECODER_COLOR_TYPE_UNKNOWN = 0xFF\r
38} EFI_HII_IMAGE_DECODER_COLOR_TYPE;\r
39\r
40//\r
41// EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER\r
42//\r
43// DecoderName Name of the decoder\r
44// ImageInfoSize The size of entire image information structure in bytes\r
45// ImageWidth The image width\r
46// ImageHeight The image height\r
47// ColorType The color type, see EFI_HII_IMAGE_DECODER_COLOR_TYPE.\r
48// ColorDepthInBits The color depth in bits\r
49//\r
50typedef struct _EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER {\r
51 EFI_GUID DecoderName;\r
52 UINT16 ImageInfoSize;\r
53 UINT16 ImageWidth;\r
54 UINT16 ImageHeight;\r
55 EFI_HII_IMAGE_DECODER_COLOR_TYPE ColorType;\r
56 UINT8 ColorDepthInBits;\r
57} EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER;\r
58\r
75f273d8
RN
59#define EFI_IMAGE_JPEG_SCANTYPE_PROGREESSIVE 0x01\r
60#define EFI_IMAGE_JPEG_SCANTYPE_INTERLACED 0x02\r
61\r
a48d0a3d
CS
62//\r
63// EFI_HII_IMAGE_DECODER_JPEG_INFO\r
64// Header The common header\r
65// ScanType The scan type of JPEG image\r
66// Reserved Reserved\r
67//\r
68typedef struct _EFI_HII_IMAGE_DECODER_JPEG_INFO {\r
69 EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER Header;\r
a48d0a3d
CS
70 UINT16 ScanType;\r
71 UINT64 Reserved;\r
72} EFI_HII_IMAGE_DECODER_JPEG_INFO;\r
73\r
74//\r
75// EFI_HII_IMAGE_DECODER_PNG_INFO\r
76// Header The common header\r
77// Channels Number of channels in the PNG image\r
78// Reserved Reserved\r
79//\r
80typedef struct _EFI_HII_IMAGE_DECODER_PNG_INFO {\r
81 EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER Header;\r
82 UINT16 Channels;\r
83 UINT64 Reserved;\r
84} EFI_HII_IMAGE_DECODER_PNG_INFO;\r
85\r
75f273d8
RN
86//\r
87// EFI_HII_IMAGE_DECODER_OTHER_INFO\r
88//\r
89typedef struct _EFI_HII_IMAGE_DECODER_OTHER_INFO {\r
90 EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER Header;\r
91 CHAR16 ImageExtenion[1];\r
92 //\r
93 // Variable length of image file extension name.\r
94 //\r
95} EFI_HII_IMAGE_DECODER_OTHER_INFO;\r
96\r
a48d0a3d
CS
97/**\r
98 There could be more than one EFI_HII_IMAGE_DECODER_PROTOCOL instances installed\r
99 in the system for different image formats. This function returns the decoder\r
100 name which callers can use to find the proper image decoder for the image. It\r
101 is possible to support multiple image formats in one EFI_HII_IMAGE_DECODER_PROTOCOL.\r
102 The capability of the supported image formats is returned in DecoderName and\r
103 NumberOfDecoderName.\r
104\r
105 @param This EFI_HII_IMAGE_DECODER_PROTOCOL instance.\r
106 @param DecoderName Pointer to a dimension to retrieve the decoder\r
107 names in EFI_GUID format. The number of the\r
108 decoder names is returned in NumberOfDecoderName.\r
109 @param NumberofDecoderName Pointer to retrieve the number of decoders which\r
110 supported by this decoder driver.\r
111\r
112 @retval EFI_SUCCESS Get decoder name success.\r
113 @retval EFI_UNSUPPORTED Get decoder name fail.\r
114\r
115**/\r
116typedef\r
117EFI_STATUS\r
75f273d8 118(EFIAPI *EFI_HII_IMAGE_DECODER_GET_NAME)(\r
a48d0a3d
CS
119 IN EFI_HII_IMAGE_DECODER_PROTOCOL *This,\r
120 IN OUT EFI_GUID **DecoderName,\r
75f273d8 121 IN OUT UINT16 *NumberOfDecoderName\r
a48d0a3d
CS
122 );\r
123\r
124/**\r
125 This function returns the image information of the given image raw data. This\r
126 function first checks whether the image raw data is supported by this decoder\r
127 or not. This function may go through the first few bytes in the image raw data\r
128 for the specific data structure or the image signature. If the image is not supported\r
129 by this image decoder, this function returns EFI_UNSUPPORTED to the caller.\r
130 Otherwise, this function returns the proper image information to the caller.\r
131 It is the caller?s responsibility to free the ImageInfo.\r
132\r
133 @param This EFI_HII_IMAGE_DECODER_PROTOCOL instance.\r
134 @param Image Pointer to the image raw data.\r
135 @param SizeOfImage Size of the entire image raw data.\r
00b7cc0f 136 @param ImageInfo Pointer to receive EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER.\r
a48d0a3d
CS
137\r
138 @retval EFI_SUCCESS Get image info success.\r
139 @retval EFI_UNSUPPORTED Unsupported format of image.\r
140 @retval EFI_INVALID_PARAMETER Incorrect parameter.\r
141 @retval EFI_BAD_BUFFER_SIZE Not enough memory.\r
142\r
143**/\r
144typedef\r
145EFI_STATUS\r
146(EFIAPI *EFI_HII_IMAGE_DECODER_GET_IMAGE_INFO)(\r
147 IN EFI_HII_IMAGE_DECODER_PROTOCOL *This,\r
148 IN VOID *Image,\r
149 IN UINTN SizeOfImage,\r
150 IN OUT EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER **ImageInfo\r
151 );\r
152\r
153/**\r
154 This function decodes the image which the image type of this image is supported\r
155 by this EFI_HII_IMAGE_DECODER_PROTOCOL. If **Bitmap is not NULL, the caller intends\r
156 to put the image in the given image buffer. That allows the caller to put an\r
157 image overlap on the original image. The transparency is handled by the image\r
158 decoder because the transparency capability depends on the image format. Callers\r
159 can set Transparent to FALSE to force disabling the transparency process on the\r
160 image. Forcing Transparent to FALSE may also improve the performance of the image\r
161 decoding because the image decoder can skip the transparency processing. If **Bitmap\r
162 is NULL, the image decoder allocates the memory buffer for the EFI_IMAGE_OUTPUT\r
163 and decodes the image to the image buffer. It is the caller?s responsibility to\r
164 free the memory for EFI_IMAGE_OUTPUT. Image decoder doesn?t have to handle the\r
165 transparency in this case because there is no background image given by the caller.\r
166 The background color in this case is all black (#00000000).\r
167\r
168 @param This EFI_HII_IMAGE_DECODER_PROTOCOL instance.\r
169 @param Image Pointer to the image raw data.\r
170 @param ImageRawDataSize Size of the entire image raw data.\r
171 @param Blt EFI_IMAGE_OUTPUT to receive the image or overlap\r
172 the image on the original buffer.\r
173 @param Transparent BOOLEAN value indicates whether the image decoder\r
174 has to handle the transparent image or not.\r
175\r
176\r
177 @retval EFI_SUCCESS Image decode success.\r
178 @retval EFI_UNSUPPORTED Unsupported format of image.\r
179 @retval EFI_INVALID_PARAMETER Incorrect parameter.\r
180 @retval EFI_BAD_BUFFER_SIZE Not enough memory.\r
181\r
182**/\r
183typedef\r
184EFI_STATUS\r
185(EFIAPI *EFI_HII_IMAGE_DECODER_DECODE)(\r
186 IN EFI_HII_IMAGE_DECODER_PROTOCOL *This,\r
187 IN VOID *Image,\r
188 IN UINTN ImageRawDataSize,\r
75f273d8 189 IN OUT EFI_IMAGE_OUTPUT **Bitmap,\r
a48d0a3d
CS
190 IN BOOLEAN Transparent\r
191 );\r
192\r
193struct _EFI_HII_IMAGE_DECODER_PROTOCOL {\r
75f273d8 194 EFI_HII_IMAGE_DECODER_GET_NAME GetImageDecoderName;\r
a48d0a3d
CS
195 EFI_HII_IMAGE_DECODER_GET_IMAGE_INFO GetImageInfo;\r
196 EFI_HII_IMAGE_DECODER_DECODE DecodeImage;\r
197};\r
198\r
199extern EFI_GUID gEfiHiiImageDecoderProtocolGuid;\r
200extern EFI_GUID gEfiHiiImageDecoderNameJpegGuid;\r
201extern EFI_GUID gEfiHiiImageDecoderNamePngGuid;\r
202\r
203#endif\r