Mercurial > mplayer.hg
annotate libvo/vesa_lvo.h @ 27505:5eb2761da33f
Remove encode2mpeglight, it is only an outdated stripped-down version of the
tool maintained externally at http://encode2mpeg.sf.net/.
author | diego |
---|---|
date | Sun, 07 Sep 2008 12:58:23 +0000 |
parents | 0585db9f5b32 |
children | d97a607821f1 |
rev | line source |
---|---|
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 | |
25527
8911d4b81d78
Relicense files written by Nick Kurshev and marked as "GPL v2" to
diego
parents:
23689
diff
changeset
|
7 * of GNU General Public licence v2 or later. |
2869 | 8 * |
9 * This file contains vo_vesa interface to Linux Video Overlay. | |
10 */ | |
11 | |
26029 | 12 #ifndef MPLAYER_VESA_LVO_H |
13 #define MPLAYER_VESA_LVO_H | |
2869 | 14 |
26162
0585db9f5b32
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
15 #include <stdint.h> |
0585db9f5b32
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
16 |
13346
046918174c25
fix not matching prototype, patch by Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz>; remove ^M
faust3
parents:
2971
diff
changeset
|
17 int vlvo_preinit(const char *drvname); |
2971 | 18 int vlvo_init(unsigned src_width,unsigned src_height, |
2869 | 19 unsigned x_org,unsigned y_org,unsigned dst_width, |
20 unsigned dst_height,unsigned format,unsigned dest_bpp); | |
21 void vlvo_term( void ); | |
13346
046918174c25
fix not matching prototype, patch by Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz>; remove ^M
faust3
parents:
2971
diff
changeset
|
22 uint32_t vlvo_query_info(uint32_t format); |
2869 | 23 |
24 uint32_t vlvo_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y); | |
25 uint32_t vlvo_draw_frame(uint8_t *src[]); | |
26 void vlvo_flip_page(void); | |
27 void vlvo_draw_osd(void); | |
28 | |
26029 | 29 #endif /* MPLAYER_VESA_LVO_H */ |