tjpgd.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*----------------------------------------------------------------------------/
  2. / TJpgDec - Tiny JPEG Decompressor R0.03 include file (C)ChaN, 2021
  3. /----------------------------------------------------------------------------*/
  4. #ifndef DEF_TJPGDEC
  5. #define DEF_TJPGDEC
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #include "tjpgdcnf.h"
  10. #include <string.h>
  11. #if defined(_WIN32) /* VC++ or some compiler without stdint.h */
  12. typedef unsigned char uint8_t;
  13. typedef unsigned short uint16_t;
  14. typedef short int16_t;
  15. typedef unsigned long uint32_t;
  16. typedef long int32_t;
  17. #else /* Embedded platform */
  18. #include <stdint.h>
  19. #endif
  20. #if JD_FASTDECODE >= 1
  21. typedef int16_t jd_yuv_t;
  22. #else
  23. typedef uint8_t jd_yuv_t;
  24. #endif
  25. /* Error code */
  26. typedef enum {
  27. JDR_OK = 0, /* 0: Succeeded */
  28. JDR_INTR, /* 1: Interrupted by output function */
  29. JDR_INP, /* 2: Device error or wrong termination of input stream */
  30. JDR_MEM1, /* 3: Insufficient memory pool for the image */
  31. JDR_MEM2, /* 4: Insufficient stream input buffer */
  32. JDR_PAR, /* 5: Parameter error */
  33. JDR_FMT1, /* 6: Data format error (may be broken data) */
  34. JDR_FMT2, /* 7: Right format but not supported */
  35. JDR_FMT3 /* 8: Not supported JPEG standard */
  36. } JRESULT;
  37. /* Rectangular region in the output image */
  38. typedef struct {
  39. uint16_t left; /* Left end */
  40. uint16_t right; /* Right end */
  41. uint16_t top; /* Top end */
  42. uint16_t bottom; /* Bottom end */
  43. } JRECT;
  44. typedef enum {
  45. /* !!!keep this order unchanged */
  46. JDF_RGB888 = 0, /* R G B R G B ... R in the low byte*/
  47. JDF_RGB565,
  48. JDF_GRAYSCALE,
  49. JDF_BGR888, /* B G R B G R ... B in the low byte */
  50. JDF_BGR565,
  51. JDF_MAX,
  52. } JFORMAT;
  53. /* Decompressor object structure */
  54. typedef struct JDEC JDEC;
  55. struct JDEC {
  56. size_t dctr; /* Number of bytes available in the input buffer */
  57. uint8_t dbit; /* Number of bits availavble in wreg or reading bit mask */
  58. uint8_t* dptr; /* Current data read ptr */
  59. #if JD_FASTDECODE >= 1
  60. uint32_t wreg; /* Working shift register */
  61. uint8_t marker; /* Detected marker (0:None) */
  62. #endif
  63. uint8_t* inbuf; /* Bit stream input buffer */
  64. uint8_t scale; /* Output scaling ratio */
  65. uint8_t msx, msy; /* MCU size in unit of block (width, height) */
  66. uint8_t qtid[3]; /* Quantization table ID of each component, Y, Cb, Cr */
  67. uint8_t ncomp; /* Number of color components 1:grayscale, 3:color */
  68. int16_t dcv[3]; /* Previous DC element of each component */
  69. uint16_t nrst; /* Restart inverval */
  70. uint16_t width, height; /* Size of the input image (pixel) */
  71. uint8_t* huffbits[2][2] __attribute__((aligned(32))); /* Huffman bit distribution tables [id][dcac] */
  72. uint16_t* huffcode[2][2]; /* Huffman code word tables [id][dcac] */
  73. uint8_t* huffdata[2][2]; /* Huffman decoded data tables [id][dcac] */
  74. #if JD_FASTDECODE == 2
  75. uint8_t longofs[2][2] __attribute__((aligned(32))); /* Table offset of long code [id][dcac] */
  76. uint16_t* hufflut_ac[2] __attribute__((aligned(32))); /* Fast huffman decode tables for AC short code [id] */
  77. uint8_t* hufflut_dc[2]; /* Fast huffman decode tables for DC short code [id] */
  78. #endif
  79. int32_t* qttbl[4]; /* Dequantizer tables [id] */
  80. void* workbuf; /* Working buffer for IDCT and RGB output */
  81. jd_yuv_t* mcubuf __attribute__((aligned(32))); /* Working buffer for the MCU */
  82. void* pool; /* Pointer to available memory pool */
  83. size_t sz_pool; /* Size of momory pool (bytes available) */
  84. size_t (*infunc)(JDEC*, uint8_t*, size_t); /* Pointer to jpeg stream input function */
  85. JFORMAT format; /* Added by sunxiaobin, specify output format. 0 - rgb888 1 -rgb565 */
  86. const void* device; /* Pointer to I/O device identifiler for the session */
  87. uint8_t swap; /* Added by Bodmer to control byte swapping */
  88. } __attribute__((aligned(32)));
  89. /* TJpgDec API functions */
  90. JRESULT jd_prepare (JDEC* jd, size_t (*infunc)(JDEC*,uint8_t*,size_t), void* pool, size_t sz_pool, JFORMAT format, const void* dev);
  91. JRESULT jd_decomp (JDEC* jd, int (*outfunc)(JDEC*,void*,JRECT*), uint8_t scale);
  92. #ifdef __cplusplus
  93. }
  94. #endif
  95. #endif /* _TJPGDEC */