1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <meta http-equiv="Content-Style-Type" content="text/css" /> 6 <link rel="stylesheet" href="../../../css/manpage.css" type="text/css" /> 7<title>DecoderErrorCode</title> 8 </head> 9 <body> 10<h1>nn::jpeg::CTR::DecoderErrorCode Enumerated Type</h1> 11<h2>Syntax</h2> 12 <div class="section"> 13 <pre class="definition"> 14enum DecoderErrorCode; 15</pre> 16 </div> 17<h2>Value</h2> 18 <div class="section"> 19 <table class="arguments"> 20 <thead> 21 <tr> 22<th>Value</th> 23<td>Description</td> 24 </tr> 25 </thead> 26 <tr> 27<th>JPEG_DECODER_ERROR_NONE</th> 28<td>There is no error.</td> 29 </tr> 30 <tr> 31<th>JPEG_DECODER_ERROR_NOT_INITIALIZED</th> 32<td>The decoder object is not initialized.</td> 33 </tr> 34 <tr> 35<th>JPEG_DECODER_ERROR_INVALID_ARGUMENT</th> 36<td>The argument is invalid.</td> 37 </tr> 38 <tr> 39<th>JPEG_DECODER_ERROR_DST_ALIGNMENT</th> 40<td>Illegal alignment of the output buffer (dst) used by the decoding function.</td> 41 </tr> 42 <tr> 43<th>JPEG_DECODER_ERROR_DST_BUFFER_SIZE</th> 44<td>Not enough bytes allocated for the output buffer used by the decoding function.</td> 45 </tr> 46 <tr> 47<th>JPEG_DECODER_ERROR_STOPPED</th> 48<td>Decoding stopped due to a request from the application.</td> 49 </tr> 50 <tr> 51<th>JPEG_DECODER_ERROR_WIDTH_HEIGHT</th> 52<td>The width or height of the image is 0 or exceeds the maximum value.</td> 53 </tr> 54 <tr> 55<th>JPEG_DECODER_ERROR_WIDTH_HEIGHT_DIFFERENT</th> 56<td>The width or height for the image does not match the specified value. Or, the size of the two images does not match.</td> 57 </tr> 58 <tr> 59<th>JPEG_DECODER_ERROR_EXIF</th> 60<td>Exif information could not be processed.</td> 61 </tr> 62 <tr> 63<th>JPEG_DECODER_ERROR_THUMBNAIL</th> 64<td>Either a thumbnail could not be found or it could not be decoded. Uncompressed thumbnails and non-Exif thumbnails cannot be decoded.</td> 65 </tr> 66 <tr> 67<th>JPEG_DECODER_ERROR_MP</th> 68<td>MP format information (MP index IFD or unique MP information IFD) could not be processed.</td> 69 </tr> 70 <tr> 71<th>JPEG_DECODER_ERROR_MP_NOT_FOUND</th> 72<td>MP format-related information could not be found.</td> 73 </tr> 74 <tr> 75<th>JPEG_DECODER_ERROR_MARKER_COMBINATION</th> 76<td>Data (markers) could not be processed. The combination of markers is illegal. For example, the SOS marker corresponding to a given SOF marker could not be found.</td> 77 </tr> 78 <tr> 79<th>JPEG_DECODER_ERROR_SOI</th> 80<td>Data (SOI marker) could not be processed.</td> 81 </tr> 82 <tr> 83<th>JPEG_DECODER_ERROR_SOF</th> 84<td>Data (SOF marker) could not be processed.</td> 85 </tr> 86 <tr> 87<th>JPEG_DECODER_ERROR_SOF_BLOCK_ID</th> 88<td>Data (SOF marker) could not be processed.</td> 89 </tr> 90 <tr> 91<th>JPEG_DECODER_ERROR_DHT</th> 92<td>Data (DHT markers) could not be processed.</td> 93 </tr> 94 <tr> 95<th>JPEG_DECODER_ERROR_SOS</th> 96<td>Data (SOS marker) could not be processed.</td> 97 </tr> 98 <tr> 99<th>JPEG_DECODER_ERROR_DQT</th> 100<td>Data (DQT marker) could not be processed.</td> 101 </tr> 102 <tr> 103<th>JPEG_DECODER_ERROR_DRI</th> 104<td>Data (DRI marker) could not be processed.</td> 105 </tr> 106 <tr> 107<th>JPEG_DECODER_ERROR_SOS_NOT_FOUND</th> 108<td>An SOS marker could not be found.</td> 109 </tr> 110 <tr> 111<th>JPEG_DECODER_ERROR_SOF_NOT_FOUND</th> 112<td>An SOF marker could not be found.</td> 113 </tr> 114 <tr> 115<th>JPEG_DECODER_ERROR_DQT_NOT_FOUND</th> 116<td>A DQT marker could not be found.</td> 117 </tr> 118 <tr> 119<th>JPEG_DECODER_ERROR_DHT_NOT_FOUND</th> 120<td>A DHT marker could not be found.</td> 121 </tr> 122 <tr> 123<th>JPEG_DECODER_ERROR_UNDERRUN_0</th> 124<td>Data could not be processed.</td> 125 </tr> 126 <tr> 127<th>JPEG_DECODER_ERROR_UNDERRUN_1</th> 128<td>Data could not be processed.</td> 129 </tr> 130 <tr> 131<th>JPEG_DECODER_ERROR_UNDERRUN_2</th> 132<td>Data could not be processed.</td> 133 </tr> 134 <tr> 135<th>JPEG_DECODER_ERROR_UNDERRUN_3</th> 136<td>Data could not be processed.</td> 137 </tr> 138 <tr> 139<th>JPEG_DECODER_ERROR_UNDERRUN_4</th> 140<td>Data could not be processed.</td> 141 </tr> 142 <tr> 143<th>JPEG_DECODER_ERROR_UNDERRUN_5</th> 144<td>Data could not be processed.</td> 145 </tr> 146 <tr> 147<th>JPEG_DECODER_ERROR_UNDERRUN_6</th> 148<td>Data could not be processed.</td> 149 </tr> 150 <tr> 151<th>JPEG_DECODER_ERROR_RANGE_0</th> 152<td>Data could not be processed.</td> 153 </tr> 154 <tr> 155<th>JPEG_DECODER_ERROR_RANGE_1</th> 156<td>Data could not be processed.</td> 157 </tr> 158 <tr> 159<th>JPEG_DECODER_ERROR_RANGE_2</th> 160<td>Data could not be processed.</td> 161 </tr> 162 <tr> 163<th>JPEG_DECODER_ERROR_RANGE_3</th> 164<td>Data could not be processed.</td> 165 </tr> 166 <tr> 167<th>JPEG_DECODER_ERROR_RANGE_4</th> 168<td>Data could not be processed.</td> 169 </tr> 170 <tr> 171<th>JPEG_DECODER_ERROR_RANGE_5</th> 172<td>Data could not be processed.</td> 173 </tr> 174 <tr> 175<th>JPEG_DECODER_ERROR_HLB_0</th> 176<td>Data could not be processed.</td> 177 </tr> 178 <tr> 179<th>JPEG_DECODER_ERROR_INTERNAL</th> 180<td>There is a problem with the library implementation if this error occurs.</td> 181 </tr> 182 </table> </div> 183<h2>Description</h2> 184 <div class="section"> 185<p>Gives the reason why the decoding or other operation just performed failed.</p><p>The return value of <a href="../../../nn/jpeg/CTR/JpegMpDecoder/GetLastError.html">JpegMpDecoder::GetLastError</a>.</p><!-- write here --></div> 186<h2>Revision History</h2> 187 <div class="section"> 188 <dl class="history"> 189 <dt>2010/10/21</dt> 190<dd>Initial version.<br /> 191 </dd> 192 </dl> 193 </div> 194 <hr><p>CONFIDENTIAL</p></body> 195</html>