tjpgdcnf.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*----------------------------------------------*/
  2. /* TJpgDec System Configurations R0.03 */
  3. /*----------------------------------------------*/
  4. #define JD_SZBUF 512
  5. /* Specifies size of stream input buffer */
  6. #define JD_FORMAT 2
  7. /* Specifies output pixel format.
  8. / 0: RGB888 (24-bit/pix)
  9. / 1: RGB565 (16-bit/pix)
  10. / 2: Grayscale (8-bit/pix)
  11. / 3: BGR888 (24-bit/pix)
  12. / 4: BGR565 (16-bit/pix)
  13. */
  14. #define JD_USE_SCALE 0
  15. /* Switches output descaling feature.
  16. / 0: Disable
  17. / 1: Enable
  18. */
  19. #define JD_TBLCLIP 1
  20. /* Use table conversion for saturation arithmetic. A bit faster, but increases 1 KB of code size.
  21. / 0: Disable
  22. / 1: Enable
  23. */
  24. //#define JD_FASTDECODE 1
  25. #define JD_FASTDECODE 2
  26. /* Optimization level
  27. / 0: Basic optimization. Suitable for 8/16-bit MCUs.
  28. / Workspace of 3100 bytes needed.
  29. / 1: + 32-bit barrel shifter. Suitable for 32-bit MCUs.
  30. / Workspace of 3480 bytes needed.
  31. / 2: + Table conversion for huffman decoding (wants 6 << HUFF_BIT bytes of RAM).
  32. / Workspace of 9644 bytes needed.
  33. */
  34. // Do not change this, it is the minimum size in bytes of the workspace needed by the decoder
  35. #if JD_FASTDECODE == 0
  36. #define TJPGD_WORKSPACE_SIZE 3100
  37. #elif JD_FASTDECODE == 1
  38. #define TJPGD_WORKSPACE_SIZE 3500
  39. #elif JD_FASTDECODE == 2
  40. #define TJPGD_WORKSPACE_SIZE (3500 + 6144)
  41. #endif