Mercurial > mplayer.hg
annotate libao2/audio_out_internal.h @ 26657:6c9312893275
Add paragraph about homepage translation.
author | diego |
---|---|
date | Thu, 08 May 2008 00:14:18 +0000 |
parents | 4129c8cfa742 |
children | e45b08f2f5d3 |
rev | line source |
---|---|
26029 | 1 #ifndef MPLAYER_AUDIO_OUT_INTERNAL_H |
2 #define MPLAYER_AUDIO_OUT_INTERNAL_H | |
954 | 3 |
4 // prototypes: | |
5 //static ao_info_t info; | |
9633
12b1790038b0
64bit libao2 fix by Jens Axboe <mplayer-dev@kernel.dk>
alex
parents:
3095
diff
changeset
|
6 static int control(int cmd, void *arg); |
954 | 7 static int init(int rate,int channels,int format,int flags); |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
9633
diff
changeset
|
8 static void uninit(int immed); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
9633
diff
changeset
|
9 static void reset(void); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
9633
diff
changeset
|
10 static int get_space(void); |
954 | 11 static int play(void* data,int len,int flags); |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
9633
diff
changeset
|
12 static float get_delay(void); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
9633
diff
changeset
|
13 static void audio_pause(void); |
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
9633
diff
changeset
|
14 static void audio_resume(void); |
954 | 15 |
16 #define LIBAO_EXTERN(x) ao_functions_t audio_out_##x =\ | |
17 {\ | |
18 &info,\ | |
19 control,\ | |
20 init,\ | |
21 uninit,\ | |
22 reset,\ | |
23 get_space,\ | |
24 play,\ | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
954
diff
changeset
|
25 get_delay,\ |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
954
diff
changeset
|
26 audio_pause,\ |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
954
diff
changeset
|
27 audio_resume\ |
954 | 28 }; |
29 | |
26029 | 30 #endif /* MPLAYER_AUDIO_OUT_INTERNAL_H */ |