Mercurial > mplayer.hg
annotate libmpcodecs/dec_audio.h @ 26757:0fdf04b07ecb
cosmetics: Remove pointless parentheses from return statements.
author | diego |
---|---|
date | Fri, 16 May 2008 09:31:55 +0000 |
parents | 41652035483c |
children | 9e739bdb049c |
rev | line source |
---|---|
26029 | 1 #ifndef MPLAYER_DEC_AUDIO_H |
2 #define MPLAYER_DEC_AUDIO_H | |
2557 | 3 |
26147
41652035483c
Add necessary header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
4 #include "libmpdemux/stheader.h" |
41652035483c
Add necessary header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
5 |
2557 | 6 // dec_audio.c: |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
15811
diff
changeset
|
7 extern void afm_help(void); |
7522 | 8 extern int init_best_audio_codec(sh_audio_t *sh_audio,char** audio_codec_list,char** audio_fm_list); |
24892 | 9 extern int decode_audio(sh_audio_t *sh_audio, int minlen); |
2557 | 10 extern void resync_audio_stream(sh_audio_t *sh_audio); |
11 extern void skip_audio_frame(sh_audio_t *sh_audio); | |
6188 | 12 extern void uninit_audio(sh_audio_t *sh_audio); |
7604
32efb806436e
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
arpi
parents:
7522
diff
changeset
|
13 |
24894 | 14 extern int init_audio_filters(sh_audio_t *sh_audio, int in_samplerate, |
15 int *out_samplerate, int *out_channels, int *out_format); | |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
24894
diff
changeset
|
16 |
26029 | 17 #endif /* MPLAYER_DEC_AUDIO_H */ |