MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
legato_imagedecoder_raw.h
1 // DOM-IGNORE-BEGIN
2 /*******************************************************************************
3 * Copyright (C) 2020 Microchip Technology Inc. and its subsidiaries.
4 *
5 * Subject to your compliance with these terms, you may use Microchip software
6 * and any derivatives exclusively with Microchip products. It is your
7 * responsibility to comply with third party license terms applicable to your
8 * use of third party software (including open source software) that may
9 * accompany Microchip software.
10 *
11 * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
12 * EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED
13 * WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A
14 * PARTICULAR PURPOSE.
15 *
16 * IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
17 * INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
18 * WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS
19 * BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE
20 * FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN
21 * ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
22 * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
23 *******************************************************************************/
24 // DOM-IGNORE-END
25 
26 /*******************************************************************************
27  Module for Microchip Graphics Library - Legato User Interface Library
28 
29  Company:
30  Microchip Technology Inc.
31 
32  File Name:
33  legato_imagedecoder_raw.h
34 
35  Summary:
36  Image decoder
37 
38  Description:
39  Internal library use only
40 *******************************************************************************/
41 
49 // DOM-IGNORE-BEGIN
50 
51 
52 
53 #ifndef LE_IMAGEDECODER_RAW_H
54 #define LE_IMAGEDECODER_RAW_H
55 
57 
58 #if LE_ENABLE_RAW_DECODER == 1
59 
61 
62 #define LE_IMAGEDECODER_RAW_MAX_STAGES 16
63 #define LE_IMAGEDECODER_BLOCK_READ_SIZE 4
64 
65 #if LE_STREAMING_ENABLED == 1
66 
67 // the cache used for streaming image source data
68 extern uint8_t leRawImageDecoderScratchBuffer[LE_ASSET_DECODER_PIXEL_CACHE_SIZE];
69 // the cache used for streaming mask lookup data
70 extern uint8_t leRawImageDecoderMaskScratchBuffer[LE_ASSET_DECODER_MASK_CACHE_SIZE];
71 // the cache used for streaming palette lookup data
72 extern uint8_t leRawImageDecoderPaletteScratchBuffer[LE_ASSET_DECODER_PALETTE_CACHE_SIZE];
73 // the cache used for streaming blend mask lookup data
74 extern uint8_t leRawImageDecoderBlendBuffer[LE_ASSET_DECODER_BLEND_CACHE_SIZE];
75 
76 #endif
77 
78 // *****************************************************************************
79 /* Enumeration:
80  enum leRawDecoderMode
81 
82  Summary:
83  Indicates the current mode of the raw image decoder
84 */
85 enum leRawDecoderMode
86 {
87  LE_RAW_MODE_NONE,
88  LE_RAW_MODE_DRAW,
89  LE_RAW_MODE_COPY,
90  LE_RAW_MODE_RESIZE,
91  LE_RAW_MODE_RESIZEDRAW,
92  LE_RAW_MODE_RENDER,
93  LE_RAW_MODE_ROTATE,
94  LE_RAW_MODE_ROTATEDRAW
95 };
96 
97 struct leRawDecodeState;
98 
99 // *****************************************************************************
100 /* Structure:
101  struct leRawDecodeStage
102 
103  Summary:
104  Structure defining an individual raw image decoding stage
105 
106  struct leRawDecodeState* state - pointer to the decoder state
107 
108  exec - function that runs this stage
109  cleanup - function that cleans up this stage
110 */
111 typedef struct leRawDecodeStage
112 {
113  struct leRawDecodeState* state;
114 
115  leResult (*exec)(struct leRawDecodeStage* stage);
116  void (*cleanup)(struct leRawDecodeStage* stage);
117 } leRawDecodeStage;
118 
119 typedef struct leRawSourceReadOperation
120 {
121  uint32_t x;
122  uint32_t y;
123  uint32_t bufferIndex;
124  leColor data;
125 } leRawSourceReadOperation;
126 
127 // *****************************************************************************
128 /* Structure:
129  struct leRawDecodeState
130 
131  Summary:
132  Structure defining the state of the raw image decoder
133 */
134 typedef struct leRawDecodeState
135 {
136 #if LE_STREAMING_ENABLED == 1
137  leStreamManager manager; // so this decoder can act as a streaming manager
138  // if necessary
139 #endif
140 
141  const leImage* source; // the source image
142  leImage* target; // destination image for copy/decompress mode
143 
144  enum leRawDecoderMode mode; // the current mode of the decoder
145 
146  leColorMode targetMode;
147  leBool randomRLE; // hint to the decoder that RLE decodes will be random
148 
149  leRect sourceRect; // the image source rectangle
150  leRect destRect; // the target rectangle dimensions
151 
152  int32_t targetX; // the current target X position
153  int32_t targetY; // the current target Y position
154 
155  int32_t referenceX; // the current target X position
156  int32_t referenceY; // the current target Y position
157 
158  uint32_t sizeX; // the size in X of the new data
159  uint32_t sizeY; // the size in Y of the new data
160 
161  int32_t angle; // rotation angle
162  lePoint sourceOrigin; // rotation origin
163  lePoint targetOrigin; // rotation origin
164 
165  uint32_t rowIterator; // the row iterator
166  uint32_t colIterator; // the column iterator
167 
168  leRawSourceReadOperation readOperation[LE_IMAGEDECODER_BLOCK_READ_SIZE]; // source data read requests
169  uint32_t readCount;
170  uint32_t readIndex;
171 
172  leColor writeColor;
173 
174  uint32_t globalAlpha; // a global alpha state
175  uint32_t pixelAlpha; // a pixel alpha state (not used yet)
176 
177  const lePixelBuffer* palette; // pointer to a lookup table if needed
178 
179  leImageFilterMode filterMode; // resize filter mode
180 
181  leBool needToLookupMaskColor;
182 
183  leRawDecodeStage* stages[LE_IMAGEDECODER_RAW_MAX_STAGES];
184  int32_t currentStage;
185  int32_t done;
186 
187 } leRawDecodeState;
188 
189 #endif /* LE_ENABLE_RAW_DECODER */
190 
191 #endif /* LE_IMAGEDECODER_RAW_H */
192 
Image functions and defintions.
Definition: legato_image.h:181
leResult
This enum represents function call results.
Definition: legato_common.h:123
This struct represents a rectangle.
Definition: legato_common.h:394
Pixel Buffer functions and definitions.
leImageFilterMode
This enum represents image filter modes.
Definition: legato_image.h:110
This structure represents a integer Cartesian point.
Definition: legato_common.h:346
Definition: legato_pixelbuffer.h:90
leColorMode
This enum represents the supported RGB color formats.
Definition: legato_color.h:148
leBool
This enum represents booleans.
Definition: legato_common.h:146