Mercurial > mplayer.hg
annotate libvo/vesa_lvo.h @ 25194:e816d546c4fe
ao_null: Make duration of "buffered" audio constant
Choose the "buffer size" for the amount of audio the driver accepts so
that it corresponds to about 0.2 seconds of playback based on the
number of channels, sample size and samplerate.
author | uau |
---|---|
date | Sat, 01 Dec 2007 01:39:39 +0000 |
parents | 3f0d00abc073 |
children | 8911d4b81d78 |
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 | |
7 * of GNU General Public licence v2. | |
8 * | |
9 * This file contains vo_vesa interface to Linux Video Overlay. | |
10 */ | |
11 | |
23689
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23686
diff
changeset
|
12 #ifndef VESA_LVO_H |
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23686
diff
changeset
|
13 #define VESA_LVO_H |
2869 | 14 |
13346
046918174c25
fix not matching prototype, patch by Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz>; remove ^M
faust3
parents:
2971
diff
changeset
|
15 int vlvo_preinit(const char *drvname); |
2971 | 16 int vlvo_init(unsigned src_width,unsigned src_height, |
2869 | 17 unsigned x_org,unsigned y_org,unsigned dst_width, |
18 unsigned dst_height,unsigned format,unsigned dest_bpp); | |
19 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
|
20 uint32_t vlvo_query_info(uint32_t format); |
2869 | 21 |
22 uint32_t vlvo_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y); | |
23 uint32_t vlvo_draw_frame(uint8_t *src[]); | |
24 void vlvo_flip_page(void); | |
25 void vlvo_draw_osd(void); | |
26 | |
27 #endif |