1 /* 2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited 3 */ 4 5 #ifndef FB_ROTATE_H 6 #define FB_ROTATE_H 7 /** 8 * @addtogroup rotate 9 * This is the brief description of the component. 10 * 11 * This is the detailed description, and it's optional. 12 * @{ 13 */ 14 15 #include <stdio.h> 16 #include <stdint.h> 17 18 /* Here is Macro and struct definition*/ 19 20 /* Here is API and callback definition*/ 21 void rotate_cw(const uint8_t *in, uint8_t *out, uint32_t w, uint32_t h); 22 23 /** @} */ 24 #endif 25 26