Remove the internal GUI
[mplayer/glamo.git] / libmpcodecs / dec_audio.h
blobc505a0539b30eabdfad7ca1b0537bbc2f7883055
1 #ifndef MPLAYER_DEC_AUDIO_H
2 #define MPLAYER_DEC_AUDIO_H
4 #include "libmpdemux/stheader.h"
6 // dec_audio.c:
7 void afm_help(void);
8 int init_best_audio_codec(sh_audio_t *sh_audio, char** audio_codec_list, char** audio_fm_list);
9 int decode_audio(sh_audio_t *sh_audio, int minlen);
10 void resync_audio_stream(sh_audio_t *sh_audio);
11 void skip_audio_frame(sh_audio_t *sh_audio);
12 void uninit_audio(sh_audio_t *sh_audio);
14 int init_audio_filters(sh_audio_t *sh_audio, int in_samplerate,
15 int *out_samplerate, int *out_channels, int *out_format);
17 #endif /* MPLAYER_DEC_AUDIO_H */