Mercurial > mplayer.hg
annotate libvo/vosub_vidix.h @ 5346:a781c611f193
Fix aac decoded size.
author | atmos4 |
---|---|
date | Tue, 26 Mar 2002 01:01:09 +0000 |
parents | e956fa7f79c7 |
children | eca7dbad0166 |
rev | line source |
---|---|
4010 | 1 /* |
2 * vosub_vidix.h | |
3 * | |
4 * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - 2002 | |
5 * | |
6 * You can redistribute this file under terms and conditions | |
7 * of GNU General Public licence v2. | |
8 * | |
9 * This file contains vosub_vidix interface to any mplayer's VO driver | |
10 */ | |
11 | |
12 #ifndef __VOSUB_VIDIX_INCLUDED | |
13 #define __VOSUB_VIDIX_INCLUDED | |
14 | |
15 /* drvname can be NULL */ | |
4352 | 16 int vidix_preinit(const char *drvname,void *server); |
4010 | 17 int vidix_init(unsigned src_width,unsigned src_height, |
18 unsigned dest_x,unsigned dest_y,unsigned dst_width, | |
19 unsigned dst_height,unsigned format,unsigned dest_bpp, | |
4434 | 20 unsigned vid_w,unsigned vid_h,const void *info); |
4234
0ec1d81c8f94
sorry, i really wanted to add vidix_start and stop as int, to detect if something went into the wrong way (also implement check in vo_xvidix)
alex
parents:
4198
diff
changeset
|
21 int vidix_start(void); |
0ec1d81c8f94
sorry, i really wanted to add vidix_start and stop as int, to detect if something went into the wrong way (also implement check in vo_xvidix)
alex
parents:
4198
diff
changeset
|
22 int vidix_stop(void); |
4010 | 23 void vidix_term( void ); |
24 uint32_t vidix_query_fourcc(unsigned fourcc); | |
25 | |
26 uint32_t vidix_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y); | |
27 uint32_t vidix_draw_frame(uint8_t *src[]); | |
28 void vidix_flip_page(void); | |
29 void vidix_draw_osd(void); | |
30 | |
4240 | 31 #include "../vidix/vidix.h" |
32 /* graphic keys */ | |
4255 | 33 int vidix_grkey_support(void); |
4240 | 34 int vidix_grkey_get(vidix_grkey_t *gr_key); |
35 int vidix_grkey_set(const vidix_grkey_t *gr_key); | |
36 | |
4010 | 37 #endif |