jpeg_hal.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 2020, Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief JPEG_HW Public API
  9. */
  10. #ifndef ZEPHYR_FRAMEWORK_INCLUDE_JPEG_HAL_H_
  11. #define ZEPHYR_FRAMEWORK_INCLUDE_JPEG_HAL_H_
  12. #include <string.h>
  13. #include <jpeg_parser.h>
  14. #include <video/jpeg_hw/jpeg_hw.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #define MAX_BLOCK_NUM 12
  19. #define JPEG_MAGIC_CODE(a, b, c, d) \
  20. (((uint32_t)(d) << 24) | ((uint32_t)(c) << 16) | ((uint32_t)(b) << 8) | (uint32_t)(a))
  21. #define JPEG_FLAG JPEG_MAGIC_CODE('J', 'P', 'E', 'G')
  22. typedef struct jpeg_sub_info
  23. {
  24. uint16_t offset;
  25. uint16_t size;
  26. }jpeg_sub_info_t;
  27. typedef struct jpeg_head_info
  28. {
  29. #ifdef CONFIG_LVGL_USE_IMG_DECODER_ACTS
  30. uint16_t tile_width;
  31. uint16_t tile_height;
  32. #endif
  33. uint32_t flag;
  34. uint16_t pic_width;
  35. uint16_t pic_height;
  36. uint16_t split_width;
  37. uint16_t split_height;
  38. uint16_t split_num;
  39. uint16_t offset[1];
  40. uint16_t size[1];
  41. }jpeg_head_info_t;
  42. /* JPEG decode state */
  43. typedef enum {
  44. HAL_JPEG_ERROR_NONE = 0,
  45. HAL_JPEG_PARSER_ERROR = 1,
  46. HAL_JPEG_CONFIG_DECODER_ERROR = 2,
  47. HAL_JPEG_DECODER_ERROR = 3,
  48. } jpeg_decode_state_e;
  49. /* JPEG decode output format */
  50. typedef enum {
  51. HAL_JPEG_OUT_RGB888 = 0,
  52. HAL_JPEG_OUT_RGB565 = 1,
  53. } jpeg_decode_output_format_e;
  54. /**
  55. * @struct hal_jpeg_handle_t
  56. * @brief Structure holding jpeg handle
  57. *
  58. */
  59. typedef struct _hal_jpeg_handle {
  60. const void *device; /*!< jpeg Device Handle */
  61. } hal_jpeg_handle_t;
  62. int hal_jpeg_decode_open(hal_jpeg_handle_t *hjpeg);
  63. /**
  64. * @brief decode jpeg pitcutre,
  65. *
  66. * @param hjpeg pointer to a hal_jpeg_handle_t structure that contains
  67. * the configuration information for the jpeg.
  68. *
  69. * @param jpeg_src source of jpeg picture addr
  70. *
  71. * @param jpeg_src size of jpeg picture
  72. *
  73. * @param bmp_buffer pointer to out put bmp buffer
  74. *
  75. * @param output_format output format , only support RGB565/RGB888
  76. *
  77. * @param output_stride output stride of output buffer
  78. *
  79. * @param win_x x of output widnow
  80. *
  81. * @param win_y y of output widnow
  82. *
  83. * @param win_w w of output widnow
  84. *
  85. * @param win_h h of output widnow
  86. *
  87. * @return the name string
  88. */
  89. int hal_jpeg_decode(hal_jpeg_handle_t *hjpeg, void *jpeg_src, int jpeg_size,
  90. void *bmp_buffer, int output_format, int output_stride,
  91. int win_x, int win_y, int win_w, int win_h);
  92. /**
  93. * @brief get jpeg picture width and height inforamtion , not realy decode ,only parser jpeg
  94. *
  95. * @param jpeg_src pointer to picture of jpeg picture
  96. *
  97. * @param jpeg_size size of picture
  98. *
  99. * @param picture_w return the picture width
  100. *
  101. * @param picture_h return the picture height
  102. *
  103. * @retval 0 on success else negative errno code.
  104. */
  105. int hal_jpeg_get_picture_info(void *jpeg_src ,uint32_t jpeg_size,
  106. uint32_t *picture_w, uint32_t *picture_h);
  107. /**
  108. * @brief close the jpeg decoder
  109. *
  110. * @param hjpeg pointer to a hal_jpeg_handle_t structure that contains
  111. * the configuration information for the jpeg.
  112. *
  113. * @retval 0 on success else negative errno code.
  114. */
  115. int hal_jpeg_decode_close(hal_jpeg_handle_t *hjpeg);
  116. /**
  117. * @brief Initialize the jpeg peripheral and create the associated handle.
  118. *
  119. * @param hjpeg pointer to a hal_jpeg_handle_t structure that contains
  120. * the configuration information for the jpeg.
  121. *
  122. * @param preferred_modes "bitwise or" of output modes that maybe used.
  123. *
  124. * @retval 0 on success else negative errno code.
  125. */
  126. int hal_jpeg_init(hal_jpeg_handle_t *hjpeg, uint32_t preferred_modes);
  127. /**
  128. * @brief deinitialize jpeg decorder
  129. *
  130. * @param jpeg handle of jpeg decoder
  131. *
  132. * @retval 0 on success else negative errno code.
  133. */
  134. int hal_jpeg_deinit(hal_jpeg_handle_t *hjpeg);
  135. /**
  136. * @brief wait jpeg decode finished
  137. *
  138. * @param hjpeg handle of jpeg decoder
  139. *
  140. * @retval 0 on success else negative errno code.
  141. */
  142. int hal_jpeg_decode_wait_finised(hal_jpeg_handle_t *hjpeg, int timeout);
  143. int jpg_decode(void* jpeg_src, int jpeg_size,
  144. void* bmp_buffer, int output_format, int output_stride,
  145. int win_x, int win_y, int win_w, int win_h);
  146. #ifdef __cplusplus
  147. }
  148. #endif
  149. #endif /* ZEPHYR_FRAMEWORK_INCLUDE_JPEG_HAL_H_ */