blob: fd538eb03ad434917169b78ef5545643031af6b0 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef __FRONTEND_SCALE_H__
#define __FRONTEND_SCALE_H__
void video_post_process(void);
void video_scale(uint16_t *dst, uint32_t dst_h, uint32_t dst_pitch);
void video_clear_msg(uint16_t *dst, uint32_t dst_h, uint32_t dst_pitch);
void video_print_msg(uint16_t *dst, uint32_t dst_h, uint32_t dst_pitch, char *msg);
#endif /* __FRONTEND_SCALE_H__ */
|