2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_DEC_AUDIO_H
|
|
|
|
#define MPLAYER_DEC_AUDIO_H
|
2001-10-30 17:04:59 +00:00
|
|
|
|
2008-03-06 08:34:50 +00:00
|
|
|
#include "libmpdemux/stheader.h"
|
|
|
|
|
2001-10-30 17:04:59 +00:00
|
|
|
// dec_audio.c:
|
2008-12-03 23:01:03 +00:00
|
|
|
void afm_help(void);
|
|
|
|
int init_best_audio_codec(sh_audio_t *sh_audio, char** audio_codec_list, char** audio_fm_list);
|
|
|
|
int decode_audio(sh_audio_t *sh_audio, int minlen);
|
|
|
|
void resync_audio_stream(sh_audio_t *sh_audio);
|
|
|
|
void skip_audio_frame(sh_audio_t *sh_audio);
|
|
|
|
void uninit_audio(sh_audio_t *sh_audio);
|
2002-10-05 22:55:45 +00:00
|
|
|
|
2008-12-03 23:01:03 +00:00
|
|
|
int init_audio_filters(sh_audio_t *sh_audio, int in_samplerate,
|
|
|
|
int *out_samplerate, int *out_channels, int *out_format);
|
2008-01-01 21:35:58 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_DEC_AUDIO_H */
|