blob: 4635e87e4db3fb9fa428fbf43eec24546fc6f15d [file] [log] [blame]
AJFISHbf231ea2007-07-13 03:21:40 +00001/** @file
2 Null implementation of the custom decompress library
lgao47bc232b2007-07-03 09:57:29 +00003
AJFISHbf231ea2007-07-13 03:21:40 +00004 Copyright (c) 2006 - 2007, Intel Corporation.<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
lgao47bc232b2007-07-03 09:57:29 +00009
AJFISHbf231ea2007-07-13 03:21:40 +000010 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
lgao47bc232b2007-07-03 09:57:29 +000012
AJFISHbf231ea2007-07-13 03:21:40 +000013**/
lgao47bc232b2007-07-03 09:57:29 +000014
AJFISH859b72f2007-07-10 16:13:56 +000015#include <Base.h>
16#include <Library/CustomDecompressLib.h>
17
lgao47bc232b2007-07-03 09:57:29 +000018
AJFISHbf231ea2007-07-13 03:21:40 +000019/**
20 The internal implementation of *_DECOMPRESS_PROTOCOL.GetInfo().
21
22 @param[in] Source The source buffer containing the compressed data.
23 @param[in] SourceSize The size of source buffer
24 @param[out] DestinationSize The size of destination buffer.
25 @param[out] ScratchSize The size of scratch buffer.
26
27 @retval RETURN_SUCCESS The size of destination buffer and the size of scratch buffer are successull retrieved.
28 @retval RETURN_INVALID_PARAMETER The source data is corrupted
29
30**/
lgao47bc232b2007-07-03 09:57:29 +000031RETURN_STATUS
32EFIAPI
33CustomDecompressGetInfo (
lgao4d8c79a82007-08-08 10:17:57 +000034 IN CONST GUID *DecompressGuid,
lgao47bc232b2007-07-03 09:57:29 +000035 IN CONST VOID *Source,
36 IN UINT32 SourceSize,
37 OUT UINT32 *DestinationSize,
38 OUT UINT32 *ScratchSize
39 )
lgao47bc232b2007-07-03 09:57:29 +000040{
41 return RETURN_UNSUPPORTED;
42}
43
AJFISHbf231ea2007-07-13 03:21:40 +000044
45/**
46 The internal implementation of *_DECOMPRESS_PROTOCOL.Decompress().
47
48 @param[in] Source The source buffer containing the compressed data.
49 @param[in] Destination The destination buffer to store the decompressed data
50 @param[out] Scratch The buffer used internally by the decompress routine. This buffer is needed to store intermediate data.
51
52
53 @retval RETURN_SUCCESS Decompression is successfull
54 @retval RETURN_INVALID_PARAMETER The source data is corrupted
55
56**/
lgao47bc232b2007-07-03 09:57:29 +000057RETURN_STATUS
58EFIAPI
59CustomDecompress (
lgao4d8c79a82007-08-08 10:17:57 +000060 IN const GUID *DecompressGuid,
lgao47bc232b2007-07-03 09:57:29 +000061 IN CONST VOID *Source,
62 IN OUT VOID *Destination,
63 IN OUT VOID *Scratch
64 )
lgao47bc232b2007-07-03 09:57:29 +000065{
66 return RETURN_UNSUPPORTED;
67}
lgao4d8c79a82007-08-08 10:17:57 +000068
69/**
70 Get decompress method guid list.
71
72 @param[in, out] AlgorithmGuidTable The decompress method guid list.
73 @param[in, out] NumberOfAlgorithms The number of decompress methods.
74
75 @retval RETURN_SUCCESS Get all algorithmes list successfully..
76**/
77RETURN_STATUS
78EFIAPI
79CustomDecompressGetAlgorithms (
80 IN OUT GUID **AlgorithmGuidTable,
81 IN OUT UINTN *NumberOfAlgorithms
82 )
83{
84 *NumberOfAlgorithms = 0;
85 return RETURN_SUCCESS;
86}