2008-02-22 10:09:46 +01:00
|
|
|
#ifndef MPLAYER_DEC_AUDIO_H
|
|
|
|
#define MPLAYER_DEC_AUDIO_H
|
2001-10-30 18:04:59 +01:00
|
|
|
|
2008-03-06 09:34:50 +01:00
|
|
|
#include "libmpdemux/stheader.h"
|
|
|
|
|
2001-10-30 18:04:59 +01:00
|
|
|
// dec_audio.c:
|
2008-12-04 00:01:03 +01: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-06 00:55:45 +02:00
|
|
|
|
2008-12-04 00:01:03 +01: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 22:35:58 +01:00
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#endif /* MPLAYER_DEC_AUDIO_H */
|