public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Ruiyu Ni <ruiyu.ni@intel.com>
To: edk2-devel@lists.01.org
Cc: Liming Gao <liming.gao@intel.com>
Subject: [PATCH 2/2] MdePkg/HiiImageDecoder.h: Add missing EFI_HII_IMAGE_DECODER_OTHER_INFO
Date: Tue, 27 Sep 2016 10:17:39 +0800	[thread overview]
Message-ID: <20160927021739.356392-3-ruiyu.ni@intel.com> (raw)
In-Reply-To: <20160927021739.356392-1-ruiyu.ni@intel.com>

Besides adding the missing structure
EFI_HII_IMAGE_DECODER_OTHER_INFO, the patch also correct some typo.

Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
---
 MdePkg/Include/Protocol/HiiImageDecoder.h | 30 +++++++++++++++++++++---------
 1 file changed, 21 insertions(+), 9 deletions(-)

diff --git a/MdePkg/Include/Protocol/HiiImageDecoder.h b/MdePkg/Include/Protocol/HiiImageDecoder.h
index aebb813..fd14592 100644
--- a/MdePkg/Include/Protocol/HiiImageDecoder.h
+++ b/MdePkg/Include/Protocol/HiiImageDecoder.h
@@ -2,6 +2,7 @@
   This protocol provides generic image decoder interfaces to various image formats.
 
 (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
+  Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
 
 This program and the accompanying materials are licensed and made available under
 the terms and conditions of the BSD License that accompanies this distribution.
@@ -12,8 +13,8 @@ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 
 **/
-#ifndef __EFI_IMAGE_DECODER_PROTOCOL_H__
-#define __EFI_IMAGE_DECODER_PROTOCOL_H__
+#ifndef __HII_IMAGE_DECODER_H__
+#define __HII_IMAGE_DECODER_H__
 
 #include <Protocol/HiiImage.h>
 
@@ -64,6 +65,9 @@ typedef struct _EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER {
   UINT8                               ColorDepthInBits;
 } EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER;
 
+#define EFI_IMAGE_JPEG_SCANTYPE_PROGREESSIVE 0x01
+#define EFI_IMAGE_JPEG_SCANTYPE_INTERLACED   0x02
+
 //
 // EFI_HII_IMAGE_DECODER_JPEG_INFO
 // Header         The common header
@@ -72,9 +76,6 @@ typedef struct _EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER {
 //
 typedef struct _EFI_HII_IMAGE_DECODER_JPEG_INFO {
   EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER  Header;
-
-#define EFI_IMAGE_JPEG_SCANTYPE_PROGREESSIVE 0x01
-#define EFI_IMAGE_JPEG_SCANTYPE_INTERLACED   0x02
   UINT16                                    ScanType;
   UINT64                                    Reserved;
 } EFI_HII_IMAGE_DECODER_JPEG_INFO;
@@ -91,6 +92,17 @@ typedef struct _EFI_HII_IMAGE_DECODER_PNG_INFO {
   UINT64                                    Reserved;
 } EFI_HII_IMAGE_DECODER_PNG_INFO;
 
+//
+// EFI_HII_IMAGE_DECODER_OTHER_INFO
+//
+typedef struct _EFI_HII_IMAGE_DECODER_OTHER_INFO {
+  EFI_HII_IMAGE_DECODER_IMAGE_INFO_HEADER Header;
+  CHAR16                                  ImageExtenion[1];
+  //
+  // Variable length of image file extension name.
+  //
+} EFI_HII_IMAGE_DECODER_OTHER_INFO;
+
 /**
   There could be more than one EFI_HII_IMAGE_DECODER_PROTOCOL instances installed
   in the system for different image formats. This function returns the decoder
@@ -112,10 +124,10 @@ typedef struct _EFI_HII_IMAGE_DECODER_PNG_INFO {
 **/
 typedef
 EFI_STATUS
-(EFIAPI *EFI_HII_IMAGE_DECODER_GET_DECODER_NAME)(
+(EFIAPI *EFI_HII_IMAGE_DECODER_GET_NAME)(
   IN      EFI_HII_IMAGE_DECODER_PROTOCOL   *This,
   IN OUT  EFI_GUID                         **DecoderName,
-  IN OUT  UINT16                           *NumberofDecoderName
+  IN OUT  UINT16                           *NumberOfDecoderName
   );
 
 /**
@@ -183,12 +195,12 @@ EFI_STATUS
   IN      EFI_HII_IMAGE_DECODER_PROTOCOL   *This,
   IN      VOID                              *Image,
   IN      UINTN                             ImageRawDataSize,
-  IN OUT  EFI_IMAGE_OUTPUT                  **BitMap OPTIONAL,
+  IN OUT  EFI_IMAGE_OUTPUT                  **Bitmap,
   IN      BOOLEAN                           Transparent
   );
 
 struct _EFI_HII_IMAGE_DECODER_PROTOCOL {
-  EFI_HII_IMAGE_DECODER_GET_DECODER_NAME  GetImageDecoderName;
+  EFI_HII_IMAGE_DECODER_GET_NAME          GetImageDecoderName;
   EFI_HII_IMAGE_DECODER_GET_IMAGE_INFO    GetImageInfo;
   EFI_HII_IMAGE_DECODER_DECODE            DecodeImage;
 };
-- 
2.9.0.windows.1



  parent reply	other threads:[~2016-09-27  2:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-27  2:17 [PATCH 0/2] Refine HiiImageDecoder.h Ruiyu Ni
2016-09-27  2:17 ` [PATCH 1/2] MdePkg/HiiImageDecoder.h: Rename from ImageDecoder.h Ruiyu Ni
2016-09-27  2:17 ` Ruiyu Ni [this message]
2016-09-28  8:13 ` [PATCH 0/2] Refine HiiImageDecoder.h Gao, Liming

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160927021739.356392-3-ruiyu.ni@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox