compress_api.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef FRAMEWORK_DISPLAY_INCLUDE_COMPRESS_API_H_
  7. #define FRAMEWORK_DISPLAY_INCLUDE_COMPRESS_API_H_
  8. #include <stdint.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #define TILE_MAX_H CONFIG_TILE_MAX_H
  13. #define TILE_MAX_W CONFIG_TILE_MAX_W
  14. #define TILE_HEAD_LEN 8
  15. /* compressed picture magic codes */
  16. #define PIC_MAGIC_CODE(a, b, c, d) \
  17. (((uint32_t)(a) << 24) | ((uint32_t)(b) << 16) | ((uint32_t)(c) << 8) | (uint32_t)(d))
  18. #define LZ4_PIC_MAGIC PIC_MAGIC_CODE('L', 'Z', '4', 'C')
  19. #define RLE_PIC_MAGIC PIC_MAGIC_CODE('R', 'L', 'E', 'C')
  20. #define RAW_PIC_MAGIC PIC_MAGIC_CODE('R', 'A', 'W', 'C')
  21. /**
  22. * @enum compressed_color_format
  23. * @brief compressed picture color format enumeration.
  24. */
  25. enum compressed_color_format {
  26. COMPRESSED_PIC_CF_UNKNOWN = 0,
  27. COMPRESSED_PIC_CF_RGB_565,
  28. COMPRESSED_PIC_CF_ARGB_8565,
  29. COMPRESSED_PIC_CF_ARGB_6666,
  30. COMPRESSED_PIC_CF_ARGB_8888,
  31. COMPRESSED_PIC_CF_A8,
  32. COMPRESSED_PIC_CF_ARGB_1555,
  33. };
  34. /**
  35. * @enum compressed_pic_format
  36. * @brief compressed function used picture format enumeration.
  37. */
  38. enum compressed_pic_forat {
  39. COMPRESSED_PIC_FORMAT_UNKNOWN = 0,
  40. COMPRESSED_PIC_FORMAT_RLE,
  41. COMPRESSED_PIC_FORMAT_LZ4,
  42. COMPRESSED_PIC_FORMAT_RAW,
  43. };
  44. /**
  45. * @struct tile_head
  46. * @brief Structure holding tile header
  47. */
  48. typedef struct {
  49. uint32_t tile_addr;
  50. uint32_t tile_size;
  51. } tile_head_t;
  52. /**
  53. * @struct lz4_pic_head
  54. * @brief Structure holding lz4 compressed picture header
  55. */
  56. typedef struct compress_pic_head {
  57. uint32_t magic;
  58. uint16_t width;
  59. uint16_t height;
  60. uint16_t tile_width;
  61. uint16_t tile_height;
  62. uint8_t format;
  63. uint8_t bytes_per_pixel;
  64. uint16_t tile_num;
  65. } compress_pic_head_t;
  66. int pic_compress(const char* picSrc, char* picDst, int srcWidth, int srcHight,
  67. int tileWidth, int tileHight, int maxOutputSize, uint8_t format, uint8_t compress_format);
  68. int pic_decompress(const char* picSource, char* picDst, int compressedSize,
  69. int maxDecompressedSize, int out_stride, int x, int y, int w, int h);
  70. int pic_compress_size(const char* picSource);
  71. int pic_compress_format(const char* picSource);
  72. #ifdef __cplusplus
  73. }
  74. #endif
  75. #endif /* FRAMEWORK_DISPLAY_INCLUDE_COMPRESS_API_H_ */