2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_AD_INTERNAL_H
|
|
|
|
#define MPLAYER_AD_INTERNAL_H
|
2002-03-25 21:06:01 +00:00
|
|
|
|
|
|
|
#include "codec-cfg.h"
|
2005-11-18 14:39:25 +00:00
|
|
|
#include "libaf/af_format.h"
|
2002-03-25 21:06:01 +00:00
|
|
|
|
2007-03-15 17:10:36 +00:00
|
|
|
#include "stream/stream.h"
|
2007-03-15 17:51:32 +00:00
|
|
|
#include "libmpdemux/demuxer.h"
|
|
|
|
#include "libmpdemux/stheader.h"
|
2002-03-25 21:06:01 +00:00
|
|
|
|
|
|
|
#include "ad.h"
|
|
|
|
|
2007-07-30 15:23:25 +00:00
|
|
|
extern int audio_output_channels;
|
2002-03-25 21:06:01 +00:00
|
|
|
static int init(sh_audio_t *sh);
|
|
|
|
static int preinit(sh_audio_t *sh);
|
|
|
|
static void uninit(sh_audio_t *sh);
|
|
|
|
static int control(sh_audio_t *sh,int cmd,void* arg, ...);
|
|
|
|
static int decode_audio(sh_audio_t *sh,unsigned char *buffer,int minlen,int maxlen);
|
|
|
|
|
|
|
|
#define LIBAD_EXTERN(x) ad_functions_t mpcodecs_ad_##x = {\
|
|
|
|
&info,\
|
|
|
|
preinit,\
|
|
|
|
init,\
|
|
|
|
uninit,\
|
|
|
|
control,\
|
|
|
|
decode_audio\
|
|
|
|
};
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_AD_INTERNAL_H */
|