tile_cache.h 796 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __TILE_CACHE_H__
  7. #define __TILE_CACHE_H__
  8. #include <compress_api.h>
  9. //#define CONFIG_TILE_CACHE_NUM 1
  10. //#define CONFIG_CACHE_PROFILE 1
  11. typedef struct tile_cache_item {
  12. uint8_t tile_data[TILE_MAX_H * TILE_MAX_W * CONFIG_TILE_BYTES_PER_PIXELS];
  13. const uint8_t *pic_addr;
  14. uint16_t tile_index;
  15. uint16_t tile_size;
  16. uint16_t cache_valid;
  17. uint16_t cache_ref_cnt;
  18. } tile_cache_item_t;
  19. int tile_cache_init(void);
  20. int tile_cache_is_valid(tile_cache_item_t * cache_item);
  21. int tile_cache_set_valid(tile_cache_item_t *cache_item, const uint8_t *pic_src, uint16_t tile_index, uint16_t tile_size);
  22. tile_cache_item_t * tile_cache_get(const uint8_t *pic_src, uint16_t tile_index);
  23. #endif