MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
legato_imagedecoder_mono.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_mono.h
34 
35  Summary:
36  Monochrome Image decoder
37 
38  Description:
39  Internal library use only
40 *******************************************************************************/
41 
49 // DOM-IGNORE-BEGIN
50 
51 #ifndef LE_IMAGEDECODER_MONO_H
52 #define LE_IMAGEDECODER_MONO_H
53 
55 
56 #if LE_ENABLE_MONO_DECODER == 1
57 
59 
60 #define LE_IMAGEDECODER_MONO_MAX_STAGES 16
61 #define LE_IMAGEDECODER_BLOCK_READ_SIZE 4
62 
63 #if LE_STREAMING_ENABLED == 1
64 
65 // the cache used for streaming image source data
66 extern uint8_t leMonoImageDecoderScratchBuffer[LE_ASSET_DECODER_PIXEL_CACHE_SIZE];
67 
68 #endif
69 
70 // *****************************************************************************
71 /* Enumeration:
72  enum leMonoDecoderMode
73 
74  Summary:
75  Indicates the current mode of the mono image decoder
76 */
77 enum leMonoDecoderMode
78 {
79  LE_MONO_MODE_NONE,
80  LE_MONO_MODE_DRAW,
81  LE_MONO_MODE_COPY,
82 };
83 
84 struct leMonoDecodeState;
85 
86 // *****************************************************************************
87 /* Structure:
88  struct leMonoDecodeStage
89 
90  Summary:
91  Structure defining an individual mono image decoding stage
92 
93  struct leMonoDecodeState* state - pointer to the decoder state
94 
95  exec - function that runs this stage
96  cleanup - function that cleans up this stage
97 */
98 typedef struct leMonoDecodeStage
99 {
100  struct leMonoDecodeState* state;
101 
102  leResult (*exec)(struct leMonoDecodeStage* stage);
103  void (*cleanup)(struct leMonoDecodeStage* stage);
105 
106 typedef struct leMonoSourceReadOperation
107 {
108  uint32_t x;
109  uint32_t y;
110  uint32_t bufferIndex;
111  leColor data;
112 } leMonoSourceReadOperation;
113 
114 // *****************************************************************************
115 /* Structure:
116  struct leMonoDecodeState
117 
118  Summary:
119  Structure defining the state of the mono image decoder
120 */
121 typedef struct leMonoDecodeState
122 {
123 #if LE_STREAMING_ENABLED == 1
124  leStreamManager manager; // so this decoder can act as a streaming manager
125  // if necessary
126 #endif
127 
128  const leImage* source; // the source image
129  leImage* target; // destination image for copy/decompress mode
130 
131  enum leMonoDecoderMode mode; // the current mode of the decoder
132 
133  leRect sourceRect; // the image source rectangle
134  leRect destRect; // the target rectangle dimensions
135 
136  int32_t targetX; // the current target X position
137  int32_t targetY; // the current target Y position
138 
139  int32_t referenceX; // the current target X position
140  int32_t referenceY; // the current target Y position
141 
142  uint32_t rowIterator; // the row iterator
143  uint32_t colIterator; // the column iterator
144 
145  leMonoSourceReadOperation readOperation[LE_IMAGEDECODER_BLOCK_READ_SIZE]; // source data read requests
146  uint32_t readCount;
147  uint32_t readIndex;
148 
149  leColor writeColor;
150 
151  leMonoDecodeStage* stages[LE_IMAGEDECODER_MONO_MAX_STAGES];
152  int32_t currentStage;
153  int32_t done;
154 
155 } leMonoDecodeState;
156 
157 #endif /* LE_ENABLE_MONO_DECODER */
158 
159 #endif /* LE_IMAGEDECODER_MONO_H */
160 
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.
Definition: legato_image.c:77