2869
|
1 /*
|
|
2 * vesa_lvo.c
|
|
3 *
|
|
4 * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - Oct 2001
|
|
5 *
|
|
6 * You can redistribute this file under terms and conditions
|
|
7 * of GNU General Public licence v2.
|
|
8 *
|
|
9 * This file contains vo_vesa interface to Linux Video Overlay.
|
|
10 */
|
|
11
|
|
12 #ifndef __VESA_LVO_INCLUDED
|
|
13 #define __VESA_LVO_INCLUDED
|
|
14
|
2971
|
15 int vlvo_preinit(
|
|
16 const char *drvname);
|
|
17 int vlvo_init(unsigned src_width,unsigned src_height,
|
2869
|
18 unsigned x_org,unsigned y_org,unsigned dst_width,
|
|
19 unsigned dst_height,unsigned format,unsigned dest_bpp);
|
|
20 void vlvo_term( void );
|
|
21 uint32_t vlvo_query_info(unsigned format);
|
|
22
|
|
23 uint32_t vlvo_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y);
|
|
24 uint32_t vlvo_draw_frame(uint8_t *src[]);
|
|
25 void vlvo_flip_page(void);
|
|
26 void vlvo_draw_osd(void);
|
|
27
|
|
28 #endif
|