lvgl_img_decoder.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /**
  2. * @file lv_img_decoder_acts.h
  3. *
  4. */
  5. /*
  6. * Copyright (c) 2020 Actions Technology Co., Ltd
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef LVGL_IMG_DECODER_ACTS_H
  11. #define LVGL_IMG_DECODER_ACTS_H
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /*********************
  16. * INCLUDES
  17. *********************/
  18. #include <lvgl/lvgl.h>
  19. /*********************
  20. * DEFINES
  21. *********************/
  22. /**********************
  23. * TYPEDEFS
  24. **********************/
  25. /**********************
  26. * GLOBAL PROTOTYPES
  27. **********************/
  28. /**
  29. * Initialize the image decoder on Actions platform
  30. */
  31. void lvgl_img_decoder_acts_init(void);
  32. /**
  33. * Decode image data inside the given area
  34. * @param src pointer to the image src varaible
  35. * @param area pointer to the image area to read
  36. * @param stride pointer to store the image stride in pixels of the decoded data
  37. * @param cf pointer to store the image cf of the decoded data
  38. * @return pointer to the decoded data
  39. */
  40. const void * lvgl_img_decoder_acts_read_area(const lv_img_dsc_t * src, const lv_area_t * area,
  41. lv_coord_t * stride, lv_img_cf_t * cf);
  42. /**
  43. * Submit a background task to decode image data inside the given area
  44. *
  45. * The behaviour is implemention decided and may not have any effect.
  46. *
  47. * @param src pointer to the image src varaible
  48. * @param area pointer to the image area to read
  49. * @return N/A
  50. */
  51. void lvgl_img_decoder_acts_submit(const lv_img_dsc_t * src, const lv_area_t * area);
  52. /**
  53. * Cancel all the background decoding task, and release the related resource
  54. * @return N/A
  55. */
  56. void lvgl_img_decoder_acts_cancel(void);
  57. /**********************
  58. * MACROS
  59. **********************/
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #endif /* LVGL_IMG_DECODER_ACTS_H */