1 #ifndef MPLAYER_DEC_AUDIO_H
2 #define MPLAYER_DEC_AUDIO_H
4 #include "libmpdemux/stheader.h"
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 */